send url always because it's used in showLink

This commit is contained in:
Ryo Hanafusa 2024-10-28 11:33:40 +00:00
parent d3c3808dae
commit 061b549d16

View file

@ -49,13 +49,10 @@ class Monitor extends BeanModel {
id: this.id, id: this.id,
name: this.name, name: this.name,
sendUrl: !!this.sendUrl, sendUrl: !!this.sendUrl,
url: this.url,
type: this.type, type: this.type,
}; };
if (this.sendUrl) {
obj.url = this.url;
}
if (showTags) { if (showTags) {
obj.tags = await this.getTags(); obj.tags = await this.getTags();
} }