Przeglądaj źródła

Stops caching on reverse log

main
Eric Amodio 7 lat temu
rodzic
commit
964cf2d5dd
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/gitService.ts

+ 1
- 1
src/gitService.ts Wyświetl plik

@ -504,7 +504,7 @@ export class GitService extends Disposable {
Logger.log(`getLogForFile('${repoPath}', '${fileName}', ${sha}, ${range && `[${range.start.line}, ${range.end.line}]`}, ${maxCount}, ${reverse})`);
let entry: GitCacheEntry | undefined;
if (this.UseGitCaching && !sha && !range && !maxCount) {
if (this.UseGitCaching && !sha && !range && !maxCount && !reverse) {
const cacheKey = this.getCacheEntryKey(fileName);
entry = this._gitCache.get(cacheKey);

Ładowanie…
Anuluj
Zapisz