cancel fetching comments if #isso-root is not available

master
Michal Krnáč 5 years ago
parent 31db6b61e7
commit 9161983a05

@ -46,6 +46,11 @@ require(["app/lib/ready", "app/config", "app/i18n", "app/api", "app/isso", "app/
}
function fetchComments() {
if ($('#isso-root').length == 0) {
return;
}
$('#isso-root').textContent = '';
api.fetch(isso_thread.getAttribute("data-isso-id") || location.pathname,
config["max-comments-top"],

Loading…
Cancel
Save