1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-01-12 02:28:11 +02:00

C&P typo from review

This commit is contained in:
Matt Visnovsky 2024-06-14 16:44:36 -06:00
parent e237d66bfc
commit a0374487ce

View File

@ -46,9 +46,9 @@ class SNMPMonitorType extends MonitorType {
if (status) {
heartbeat.status = UP;
heartbeat.msg = `JSON query passes (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`;
heartbeat.msg = `JSON query passes (comparing ${response} ${monitor.jsonPathOperator} ${monitor.expectedValue})`;
} else {
throw new Error(`JSON query does not pass (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`);
throw new Error(`JSON query does not pass (comparing ${response} ${monitor.jsonPathOperator} ${monitor.expectedValue})`);
}
} finally {
if (session) {