浏览代码

Fixes asWebviewUri call in graph webview

main
Ramin Tadayon 1年前
父节点
当前提交
e85bcfd67b
找不到此签名对应的密钥 GPG 密钥 ID: 5B90E918AEBCE7A7
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 5
- 1
src/plus/webviews/graph/graphWebview.ts 查看文件

@ -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);
}
}

正在加载...
取消
保存