mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-18 02:47:24 +00:00
fix: maintenance heredity
This commit is contained in:
parent
2b46da0f47
commit
56f448bfe5
1 changed files with 4 additions and 4 deletions
|
@ -1371,11 +1371,11 @@ class Monitor extends BeanModel {
|
||||||
if (maintenance && await maintenance.isUnderMaintenance()) {
|
if (maintenance && await maintenance.isUnderMaintenance()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const parent = await Monitor.getParent(monitorID);
|
const parent = await Monitor.getParent(monitorID);
|
||||||
if (parent != null) {
|
if (parent != null) {
|
||||||
return await Monitor.isUnderMaintenance(parent.id);
|
return await Monitor.isUnderMaintenance(parent.id);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue