[bug] this.processes not iterable in getMyProcesses()

This commit is contained in:
Sosthene 2025-09-04 13:17:17 +02:00
parent 06234a986b
commit 4bf0d115e5

View File

@ -676,7 +676,7 @@ export class Service {
const newMyProcesses = new Set<string>();
// 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);