remove unneeded validation

This commit is contained in:
Brodie Davis 2024-06-23 21:16:27 -04:00
parent 2c8cefc784
commit 0325c14d42

View file

@ -1493,12 +1493,6 @@ class Monitor extends BeanModel {
if (this.interval < MIN_INTERVAL_SECOND) {
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;
}
}
/**