Преглед на файлове

Fixes #751 - adds null ref protection

main
Eric Amodio преди 5 години
родител
ревизия
10f46a1884
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. +2
    -2
      src/git/gitService.ts

+ 2
- 2
src/git/gitService.ts Целия файл

@ -1764,7 +1764,7 @@ export class GitService implements Disposable {
skip === 0
? GitUri.fromFile(fileName, repoPath, ref)
: (await this.getPreviousUri(repoPath, uri, undefined, skip - 1))!;
if (current.sha === GitService.deletedOrMissingSha) return undefined;
if (current === undefined || current.sha === GitService.deletedOrMissingSha) return undefined;
return {
current: current,
@ -1777,7 +1777,7 @@ export class GitService implements Disposable {
skip === 0
? GitUri.fromFile(fileName, repoPath, ref)
: (await this.getPreviousUri(repoPath, uri, ref, skip - 1))!;
if (current.sha === GitService.deletedOrMissingSha) return undefined;
if (current === undefined || current.sha === GitService.deletedOrMissingSha) return undefined;
return {
current: current,

Зареждане…
Отказ
Запис