Fix traffic extraction jobs pagination

This commit is contained in:
emanuele-f 2018-11-13 20:25:39 +01:00
parent 0bb6f5c7f5
commit 9a506c69c3
2 changed files with 6 additions and 1 deletions

View file

@ -156,12 +156,14 @@ end
-- ##############################################
function asc_insensitive(a,b)
if type(a) ~= "string" then return asc(a,b) end
return (string.lower(a) < string.lower(b))
end
-- ##############################################
function rev_insensitive(a,b)
if type(a) ~= "string" then return rev(a,b) end
return (string.lower(a) > string.lower(b))
end