1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-06-27 00:51:30 +02:00

Do not set sendUrl if sendUrl is undefined

This commit is contained in:
Louis Lam
2022-07-22 23:27:02 +08:00
parent 9a8b484ee8
commit 239611a016
2 changed files with 6 additions and 2 deletions

View File

@ -202,7 +202,11 @@ module.exports.statusPageSocketHandler = (socket) => {
relationBean.weight = monitorOrder++;
relationBean.group_id = groupBean.id;
relationBean.monitor_id = monitor.id;
relationBean.send_url = monitor.sendUrl;
if (monitor.sendUrl !== undefined) {
relationBean.send_url = monitor.sendUrl;
}
await R.store(relationBean);
}