Browse Source

Fixes asWebviewUri call in graph webview

main
Ramin Tadayon 1 year ago
parent
commit
e85bcfd67b
No known key found for this signature in database GPG Key ID: 5B90E918AEBCE7A7
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 5
- 1
src/plus/webviews/graph/graphWebview.ts View 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);
}
}

Loading…
Cancel
Save