Skip to content

Commit

Permalink
Fixes asWebviewUri call in graph webview
Browse files Browse the repository at this point in the history
  • Loading branch information
axosoft-ramint committed Mar 2, 2023
1 parent bf79a83 commit e85bcfd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/plus/webviews/graph/graphWebview.ts
Expand Up @@ -1537,7 +1537,11 @@ export class GraphWebview extends WebviewBase<State> {
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);
}
}
Expand Down

0 comments on commit e85bcfd

Please sign in to comment.