mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
invalidate url field for irrelevant monitor types
This commit is contained in:
parent
1488b1f17b
commit
94f75b2fbc
@ -1493,6 +1493,12 @@ class Monitor extends BeanModel {
|
|||||||
if (this.interval < MIN_INTERVAL_SECOND) {
|
if (this.interval < MIN_INTERVAL_SECOND) {
|
||||||
throw new Error(`Interval cannot be less than ${MIN_INTERVAL_SECOND} seconds`);
|
throw new Error(`Interval cannot be less than ${MIN_INTERVAL_SECOND} seconds`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ensure URL is set to null for monitor types that don't use it,
|
||||||
|
// or the URL may be mistakenly used later (e.g., in notifications)
|
||||||
|
if (![ "http", "keyword", "json-query", "real-browser" ].includes(this.type)) {
|
||||||
|
this.url = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user