fix: client side crash if there are no topics

v1.18.x
Barış Soner Uşaklı 5 years ago
parent 21ae81b4af
commit a8e18fdbe6

@ -263,6 +263,9 @@ define('forum/category/tools', [
}
function handlePinnedTopicSort() {
if (!ajaxify.data.topics) {
return;
}
var numPinned = ajaxify.data.topics.reduce(function (memo, topic) {
memo = topic.pinned ? memo += 1 : memo;
return memo;

Loading…
Cancel
Save