Поправлен баг

This commit is contained in:
Book Pauk
2022-08-16 23:40:40 +07:00
parent f8557cba88
commit ec4d5cac4f

View File

@@ -25,7 +25,7 @@ class WorkerState {
return {
set: state => this.setState(workerId, state),
finish: state => this.finishState(workerId, state),
get: workerId => this.getState(workerId),
get: () => this.getState(workerId),
};
}