Skip to content
Snippets Groups Projects
Commit 4f506681 authored by rswindell's avatar rswindell
Browse files

Fixed typo (isNaN, not isNan).

parent 8b46101b
Branches
Tags
No related merge requests found
...@@ -222,7 +222,7 @@ for(var l in list_array) { ...@@ -222,7 +222,7 @@ for(var l in list_array) {
log(LOG_DEBUG,format("ListServer: %s pointer read: %u" log(LOG_DEBUG,format("ListServer: %s pointer read: %u"
,list.name, ptr)); ,list.name, ptr));
if(isNan(ptr)) if(isNaN(ptr))
ptr = msgbase.last_msg+1; // export none ptr = msgbase.last_msg+1; // export none
else if(ptr < msgbase.first_msg) else if(ptr < msgbase.first_msg)
ptr = msgbase.first_msg; // export all ptr = msgbase.first_msg; // export all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment