fixed lb scrolling up not working correctly

This commit is contained in:
Jack 2021-09-07 20:59:32 +01:00
parent 30a85fc858
commit d646ecd65a

View file

@ -248,6 +248,9 @@ async function requestMore(lb, prepend = false) {
} else {
currentData[lb].push(...data);
}
if (prepend && !limitVal) {
limitVal = leaderboardSingleLimit;
}
fillTable(lb, limitVal);
hideLoader(lb);
}