Trim before truncating "keword not found" message

pull/3054/head
Christopher Wilkinson 1 year ago
parent 680dccefea
commit 0e516a42e5
No known key found for this signature in database
GPG Key ID: 693AE6BC332CD748

@ -400,7 +400,7 @@ class Monitor extends BeanModel {
bean.msg += ", keyword is found";
bean.status = UP;
} else {
data = data.replace(/<[^>]*>?|[\n\r]|\s+/gm, " ");
data = data.replace(/<[^>]*>?|[\n\r]|\s+/gm, " ").trim();
if (data.length > 50) {
data = data.substring(0, 47) + "...";
}

Loading…
Cancel
Save