Minor net2 cleanup

This commit is contained in:
Jon Staab
2025-03-24 13:35:43 -07:00
parent b985003333
commit d7b74d2c7e
6 changed files with 39 additions and 24 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export class TaskQueue<Item> {
}
async process() {
if (this.isProcessing || this.isPaused || this.items.length == 0) {
if (this.isProcessing || this.isPaused || this.items.length === 0) {
return
}