We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 431c5a4 commit b8a55dcCopy full SHA for b8a55dc
CHANGELOG.md
@@ -3,6 +3,7 @@
3
4
* Copy-command action in context menu
5
* Check for updates option is now outside of Display section
6
+* Fixed problem with task timer not stopping
7
* Updates disabled by default on dev mode
8
* Some minor dependencies updated
9
src/app/common/task.js
@@ -53,11 +53,10 @@ class Task {
53
(statusCode, out, err) => {
54
onOutput(out);
55
onOutput(err);
56
- console.log("ON TASK FINISH CALLBACK")
57
if (this.status !== TaskStatus.stopped){
58
this.status = yerbamate.successCode(statusCode) ? TaskStatus.ok : TaskStatus.error;
59
- this.timer.stop();
60
}
+ this.timer.stop();
61
done();
62
});
63
0 commit comments