mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-03 11:01:20 +01:00
fix: missing cb in world IS handler
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user