Browse Source

Fix new thread notifications breaking script

Tried to access invalid child.
pull/52/head
tmp-server 3 years ago
parent
commit
58d1e37c1a
  1. 6
      js/mod/recent-posts-auto-reload.js

6
js/mod/recent-posts-auto-reload.js

@ -220,7 +220,11 @@ $(document).ready(function(){
}
// Notify on all posts, not just the first unread
if (notify === "all") {
var body = $(this).children('.body').html().replace(/<br\s*[\/]?>/gi, "\n");
if ($(this).hasClass('thread')){
var body = $(this).children('.post').children('.body').html().replace(/<br\s*[\/]?>/gi, "\n");
} else {
var body = $(this).children('.body').html().replace(/<br\s*[\/]?>/gi, "\n");
}
var n = new Notification("New reply to "+title, {body: $('<div/>').html(body).text()});
}
if ($("div.post,div.thread").length > 1){

Loading…
Cancel
Save