Преглед изворни кода

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

Loading…
Откажи
Сачувај