Skip to content

Commit 5cdde1a

Browse files
committed
fixed total count
1 parent a18525a commit 5cdde1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/crashes/api/api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ plugins.setConfigs("crashes", {
974974
return crash;
975975
});
976976
}
977-
common.returnOutput(params, {sEcho: params.qstring.sEcho, iTotalRecords: Math.max(total, 0), iTotalDisplayRecords: count, aaData: crashData});
977+
common.returnOutput(params, {sEcho: params.qstring.sEcho, iTotalRecords: Math.max(total, count, 0), iTotalDisplayRecords: count, aaData: crashData});
978978
});
979979
});
980980
});

0 commit comments

Comments
 (0)