From 4bf0d115e586f7a76c37d2da13b6861e965d8034 Mon Sep 17 00:00:00 2001 From: Sosthene Date: Thu, 4 Sep 2025 13:17:17 +0200 Subject: [PATCH] [bug] this.processes not iterable in getMyProcesses() --- src/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service.ts b/src/service.ts index aca4297..b8d5a0a 100644 --- a/src/service.ts +++ b/src/service.ts @@ -676,7 +676,7 @@ export class Service { const newMyProcesses = new Set(); // MyProcesses automatically contains pairing process newMyProcesses.add(pairingProcessId); - for (const [processId, process] of Object.entries(this.processes)) { + for (const [processId, process] of this.processes.entries()) { try { const roles = this.getRoles(process);