Ver a proveniência

Fixes issue with disabled caching

main
Eric Amodio há 7 anos
ascendente
cometimento
c5c1e24c62
1 ficheiros alterados com 2 adições e 0 eliminações
  1. +2
    -0
      src/gitProvider.ts

+ 2
- 0
src/gitProvider.ts Ver ficheiro

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

Carregando…
Cancelar
Guardar