Преглед изворни кода

Adds protection to hopefully address #226

main
Eric Amodio пре 7 година
родитељ
комит
8344c33d4a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/currentLineController.ts

+ 1
- 1
src/currentLineController.ts Прегледај датотеку

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

Loading…
Откажи
Сачувај