Fix unread count + thread updater with quote threading enabled
See guys, fix one thing, break another!
This commit is contained in:
parent
b3f937f5c8
commit
6649e8519c
@ -10148,6 +10148,9 @@
|
||||
return Unread.update();
|
||||
} else if (!Conf['Quote Threading']) {
|
||||
return Unread.addPosts(e.detail.newPosts);
|
||||
} else {
|
||||
Unread.read();
|
||||
return Unread.update();
|
||||
}
|
||||
},
|
||||
readSinglePost: function(post) {
|
||||
|
||||
@ -10139,6 +10139,9 @@
|
||||
return Unread.update();
|
||||
} else if (!Conf['Quote Threading']) {
|
||||
return Unread.addPosts(e.detail.newPosts);
|
||||
} else {
|
||||
Unread.read();
|
||||
return Unread.update();
|
||||
}
|
||||
},
|
||||
readSinglePost: function(post) {
|
||||
|
||||
@ -128,6 +128,9 @@ Unread =
|
||||
Unread.update()
|
||||
else if !Conf['Quote Threading']
|
||||
Unread.addPosts e.detail.newPosts
|
||||
else
|
||||
Unread.read()
|
||||
Unread.update()
|
||||
|
||||
readSinglePost: (post) ->
|
||||
{ID} = post
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user