浏览代码

Fixes issue with disabled caching

main
Eric Amodio 7 年前
父节点
当前提交
c5c1e24c62
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      src/gitProvider.ts

+ 2
- 0
src/gitProvider.ts 查看文件

@ -106,6 +106,8 @@ export class GitProvider extends Disposable {
}
public getBlameability(fileName: string): boolean {
if (!this.UseGitCaching) return true;
const cacheKey = this.getCacheEntryKey(Git.normalizePath(fileName));
const entry = this._gitCache.get(cacheKey);
return !(entry && entry.hasErrors);

正在加载...
取消
保存