mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-09 14:50:00 +08:00
Fix: Active needs to return bool instead of 0
This commit is contained in:
@@ -155,7 +155,7 @@ class Monitor extends BeanModel {
|
||||
async isActive() {
|
||||
const parentActive = await Monitor.isParentActive(this.id);
|
||||
|
||||
return this.active && parentActive;
|
||||
return (this.active === 1) && parentActive;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user