소스 검색

Adds even more protection

main
Eric Amodio 2 년 전
부모
커밋
658a1d68d9
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      src/commands/gitCommands.ts

+ 6
- 2
src/commands/gitCommands.ts 파일 보기

@ -416,10 +416,14 @@ export class GitCommandsCommand extends Command {
input.show();
// Manually trigger `onDidChangeValue`, because the InputBox seems to fail to call it properly
// Manually trigger `onDidChangeValue`, because the InputBox fails to call it if the value is set before it is shown
if (step.value != null) {
// HACK: This is fragile!
(input as any)._onDidChangeValueEmitter?.fire(input.value);
try {
(input as any)._onDidChangeValueEmitter?.fire(input.value);
} catch {
debugger;
}
}
});
} finally {

불러오는 중...
취소
저장