Closed fessyfoo closed 9 years ago
if realert_every is somehow not set it caued a divide by zero error. because nil.to_i is 0 and 0 || 1 is 0. [ruby is not shell]
nil.to_i
0
0 || 1
Whoa! Thanks!
if realert_every is somehow not set it caued a divide by zero error. because
nil.to_i
is0
and0 || 1
is0
. [ruby is not shell]