IP address field is empty bug

I'm using this plugin, and I'm getting the exception when this field is empty (null). One checking line on the beginning solved this problem for me.
pull/369/head
miodragbogdanovic 7 years ago committed by GitHub
parent af35f79121
commit b9a6db3ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,6 +18,7 @@
jQuery.extend( jQuery.fn.dataTableExt.oSort, { jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"ip-address-pre": function ( a ) { "ip-address-pre": function ( a ) {
if (a == null) { return 0 }
var i, item; var i, item;
var m = a.split("."), var m = a.split("."),
n = a.split(":"), n = a.split(":"),
@ -100,4 +101,4 @@ jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"ip-address-desc": function ( a, b ) { "ip-address-desc": function ( a, b ) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0)); return ((a < b) ? 1 : ((a > b) ? -1 : 0));
} }
}); });

Loading…
Cancel
Save