Comments: Don't break JavaScript when loading more (#3870)

This commit is contained in:
Samantaz Fox 2023-06-11 16:05:25 +02:00
commit 68c26563fc
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -282,7 +282,7 @@ function get_youtube_replies(target, load_more, load_replies) {
if (load_more) {
body = body.parentNode.parentNode;
body.removeChild(body.lastElementChild);
body.innerHTML += response.contentHtml;
body.insertAdjacentHTML('beforeend', response.contentHtml);
} else {
body.removeChild(body.lastElementChild);