Skip to content

Commit 997de79

Browse files
authored
SpiceSpy v5.2.2: Bugfix (#6932)
1 parent 281eb0b commit 997de79

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

SpiceSpy@claudiux/files/SpiceSpy@claudiux/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v5.2.2~20250226
2+
* Bugfix.
3+
14
### v5.2.1~20250226
25
* Removed debug messages.
36

SpiceSpy@claudiux/files/SpiceSpy@claudiux/applet.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ class SpiceSpy extends Applet.TextIconApplet {
552552
}
553553
}
554554
//~ logDebug("do_issuesJob: "+type+" "+uuid+": "+issuesNumber+" issues.");
555-
this.spices_to_spy[type][uuid]["issues"] = issuesNumber;
555+
if (this.spices_to_spy[type][uuid])
556+
this.spices_to_spy[type][uuid]["issues"] = issuesNumber;
556557
this.make_menu();
557558
} // End of do_issuesJob
558559

SpiceSpy@claudiux/files/SpiceSpy@claudiux/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"uuid": "SpiceSpy@claudiux",
33
"name": "SpiceSpy",
44
"description": "Notifies you when there's a change to your favorite Spices on the website.",
5-
"version": "5.2.1",
5+
"version": "5.2.2",
66
"max-instances": 1,
77
"author": "claudiux"
88
}

0 commit comments

Comments
 (0)