Sfoglia il codice sorgente

Fixes asWebviewUri call in graph webview

main
Ramin Tadayon 1 anno fa
parent
commit
e85bcfd67b
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 5B90E918AEBCE7A7
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +5
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 5
- 1
src/plus/webviews/graph/graphWebview.ts Vedi File

@ -1537,7 +1537,11 @@ export class GraphWebview extends WebviewBase {
if (remote != null) {
ref.avatarUrl = (
(useAvatars ? remote.provider?.avatarUri : undefined) ??
getRemoteIconUri(this.container, remote, this._panel!.webview.asWebviewUri.bind(this))
getRemoteIconUri(
this.container,
remote,
this._panel!.webview.asWebviewUri.bind(this._panel!.webview),
)
)?.toString(true);
}
}

Caricamento…
Annulla
Salva