Skip to content

Commit b8a55dc

Browse files
committed
fix timer #441
1 parent 431c5a4 commit b8a55dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
* Copy-command action in context menu
55
* Check for updates option is now outside of Display section
6+
* Fixed problem with task timer not stopping
67
* Updates disabled by default on dev mode
78
* Some minor dependencies updated
89

src/app/common/task.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,10 @@ class Task {
5353
(statusCode, out, err) => {
5454
onOutput(out);
5555
onOutput(err);
56-
console.log("ON TASK FINISH CALLBACK")
5756
if (this.status !== TaskStatus.stopped){
5857
this.status = yerbamate.successCode(statusCode) ? TaskStatus.ok : TaskStatus.error;
59-
this.timer.stop();
6058
}
59+
this.timer.stop();
6160
done();
6261
});
6362
}

0 commit comments

Comments
 (0)