Use stored title instead of document.title in notifications

Prevents number of unreads being added to notificaiton thread name
This commit is contained in:
discomrade 2021-10-15 00:52:23 +00:00
parent 04289c6613
commit 47ac8c7ae9
2 changed files with 3 additions and 3 deletions

View File

@ -242,8 +242,8 @@ $(document).ready(function(){
makeIcon('reply');
}
if (notify === "all" || (notify === "mention" && $(this).find('.own_post').length)) {
var body = $(this).children('.body').html().replace(/<br\s*[\/]?>/gi, "\n");
var n = new Notification("New reply to "+$('title').text(), {body: $('<div/>').html(body).text()});
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").length > 1){
$(this).insertAfter($('div.post:not(.post-hover):last').next()).after('<br class="clear">');

View File

@ -221,7 +221,7 @@ $(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");
var n = new Notification("New reply to "+$('title').text(), {body: $('<div/>').html(body).text()});
var n = new Notification("New reply to "+title, {body: $('<div/>').html(body).text()});
}
if ($("div.post,div.thread").length > 1){
$(this).parent().insertBefore($($('div.post,div.thread').not('.post-hover').first()).parent());