We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f66e7 commit 176cf0eCopy full SHA for 176cf0e
1 file changed
src/commands.ts
@@ -47,9 +47,10 @@ export function commandFactory(statusBarItems: MobStatusBarItem[]) {
47
try {
48
await asyncExec(command, expectedMessage);
49
50
- const timerCountdown = new TimerCountdown();
51
- timerCountdown.startTimer(Number(timeInput));
52
-
+ if (timer > 0) {
+ const timerCountdown = new TimerCountdown();
+ timerCountdown.startTimer(Number(timeInput));
53
+ }
54
} finally {
55
startItem?.stopLoading();
56
}
0 commit comments