[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>(); const newMyProcesses = new Set<string>();
// MyProcesses automatically contains pairing process // MyProcesses automatically contains pairing process
newMyProcesses.add(pairingProcessId); newMyProcesses.add(pairingProcessId);
for (const [processId, process] of Object.entries(this.processes)) { for (const [processId, process] of this.processes.entries()) {
try { try {
const roles = this.getRoles(process); const roles = this.getRoles(process);