mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
prevent invalid url strings in monitorJSON
This commit is contained in:
parent
39c1283ba6
commit
1488b1f17b
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class Monitor extends BeanModel {
|
||||||
pathName,
|
pathName,
|
||||||
parent: this.parent,
|
parent: this.parent,
|
||||||
childrenIDs: await Monitor.getAllChildrenIDs(this.id),
|
childrenIDs: await Monitor.getAllChildrenIDs(this.id),
|
||||||
url: this.url,
|
url: this.getUrl(),
|
||||||
method: this.method,
|
method: this.method,
|
||||||
hostname: this.hostname,
|
hostname: this.hostname,
|
||||||
port: this.port,
|
port: this.port,
|
||||||
|
|
Loading…
Reference in a new issue