Downloading the instructions through the socket #53

Merged
gregoo merged 8 commits from gregoo/BrickTracker:instructions into instructions 2025-01-26 09:48:18 +01:00
Showing only changes of commit 19750d1365 - Show all commits

View File

@ -139,7 +139,7 @@ class BrickSocket {
let count = data["count"]
// Fix the total if bogus
if (!total || isNaN(total) || total <= 1) {
if (!total || isNaN(total) || total <= 0) {
total = 0;
}