Fix: Missing await for isActive (#3717)
This commit is contained in:
parent
1f29fabe64
commit
0af4ee6c34
|
@ -796,7 +796,7 @@ let needSetup = false;
|
|||
|
||||
await updateMonitorNotification(bean.id, monitor.notificationIDList);
|
||||
|
||||
if (bean.isActive()) {
|
||||
if (await bean.isActive()) {
|
||||
await restartMonitor(socket.userID, bean.id);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue