Browse Source

fix retryInterval = 0 if it is an old monitor. (#380 https://github.com/louislam/uptime-kuma/pull/380#issuecomment-922618356)

sqlite-upgrade-prebuilt
LouisLam 4 years ago
parent
commit
6aaf984f29
  1. 5
      src/pages/EditMonitor.vue

5
src/pages/EditMonitor.vue

@ -333,6 +333,11 @@ export default {
this.$root.getSocket().emit("getMonitor", this.$route.params.id, (res) => {
if (res.ok) {
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 {
toast.error(res.msg)
}

Loading…
Cancel
Save