Explorar el Código

Fixes issue with disabled caching

main
Eric Amodio hace 7 años
padre
commit
c5c1e24c62
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      src/gitProvider.ts

+ 2
- 0
src/gitProvider.ts Ver fichero

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

Cargando…
Cancelar
Guardar