mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 10:58:34 -05:00
Fixes blame explorer failing to load content
This commit is contained in:
@@ -51,7 +51,7 @@ export default class GitBlameContentProvider implements TextDocumentContentProvi
|
|||||||
|
|
||||||
//const editor = this._findEditor(Uri.file(join(data.repoPath, data.file)));
|
//const editor = this._findEditor(Uri.file(join(data.repoPath, data.file)));
|
||||||
|
|
||||||
return this.git.getVersionedFileText(data.originalFileName || data.fileName, data.sha, data.repoPath).then(text => {
|
return this.git.getVersionedFileText(data.originalFileName || data.fileName, data.repoPath, data.sha).then(text => {
|
||||||
this.update(uri);
|
this.update(uri);
|
||||||
|
|
||||||
// TODO: This only works on the first load -- not after since it is cached
|
// TODO: This only works on the first load -- not after since it is cached
|
||||||
|
|||||||
Reference in New Issue
Block a user