Skip to content

Commit 614e103

Browse files
authored
Update UptimeKuma.php (#830)
change an === operator to the !== operator.
1 parent 663c81f commit 614e103

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

UptimeKuma/UptimeKuma.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function livestats()
6262
continue;
6363
}
6464

65-
if (strpos($line, 'monitor_status') === 0) {
65+
if (strpos($line, 'monitor_status') !== 0) {
6666
// If the line is a metric but not a monitor we can ignore it
6767
continue;
6868
}

0 commit comments

Comments
 (0)