cancel fetching comments if #isso-root is not available

This commit is contained in:
Michal Krnáč 2019-03-11 14:06:27 +01:00
parent 31db6b61e7
commit 9161983a05

View File

@ -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"],