소스 검색

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

불러오는 중...
취소
저장