fix: missing cb in world IS handler

This commit is contained in:
Julian Lam
2026-02-19 11:02:51 -05:00
parent 54d2bea229
commit ab62a8e4ce

View File

@@ -71,11 +71,12 @@ define('forum/world', [
return;
}
loadTopicsAfter(after, direction, (payload) => {
loadTopicsAfter(after, direction, (payload, callback) => {
app.parseAndTranslate(ajaxify.data.template.name, 'posts', payload, function (html) {
const listEl = document.getElementById('world-feed');
$(listEl).append(html);
html.find('.timeago').timeago();
callback();
});
});
});