[bug] this.processes not iterable in getMyProcesses()
This commit is contained in:
parent
06234a986b
commit
4bf0d115e5
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user