Fix: Missing await for isActive (#3717)

pull/3729/head
Nelson Chan 8 months ago committed by GitHub
parent 1f29fabe64
commit 0af4ee6c34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save