[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>();
|
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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user