Procházet zdrojové kódy

Adds protection to hopefully address #226

main
Eric Amodio před 7 roky
rodič
revize
8344c33d4a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/currentLineController.ts

+ 1
- 1
src/currentLineController.ts Zobrazit soubor

@ -360,7 +360,7 @@ export class CurrentLineController extends Disposable {
private async updateTrailingAnnotation(commit: GitCommit, blameLine: GitCommitLine, editor: TextEditor, line?: number) {
const state = this.getLineAnnotationState();
if (!state.enabled || state.annotationType !== LineAnnotationType.Trailing) return;
if (!state.enabled || state.annotationType !== LineAnnotationType.Trailing || !isTextEditor(editor)) return;
line = line === undefined ? blameLine.line : line;

Načítá se…
Zrušit
Uložit