mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
fix retryInterval = 0 if it is an old monitor. (#380 https://github.com/louislam/uptime-kuma/pull/380#issuecomment-922618356)
This commit is contained in:
parent
0664217a09
commit
6aaf984f29
|
@ -333,6 +333,11 @@ export default {
|
||||||
this.$root.getSocket().emit("getMonitor", this.$route.params.id, (res) => {
|
this.$root.getSocket().emit("getMonitor", this.$route.params.id, (res) => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
this.monitor = res.monitor;
|
this.monitor = res.monitor;
|
||||||
|
|
||||||
|
// Handling for monitors that are created before 1.7.0
|
||||||
|
if (this.monitor.retryInterval === 0) {
|
||||||
|
this.monitor.retryInterval = this.monitor.interval;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
toast.error(res.msg)
|
toast.error(res.msg)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue