mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
Merge pull request #513 from laf/issue-laf-125
This should not be zero by default as that means alerts will be triggered constantly. Defaulting to 300
This commit is contained in:
@@ -1120,7 +1120,7 @@ function convert_delay($delay) {
|
||||
} elseif(is_numeric($delay)) {
|
||||
$delay_sec = $delay;
|
||||
} else {
|
||||
$delay_sec = 0;
|
||||
$delay_sec = 300;
|
||||
}
|
||||
return($delay_sec);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user