I think this was what I had meant to put there.
It checks unread count already anyways, and the previous behavior was causing QuoteThreading.force() to run twice, and may have caused an issue where backlinks were doubling-up? I don't know, I'm still looking into that issue because it's happening on the Index as well.
This commit is contained in:
parent
1277d32161
commit
1e24021c07
@ -12207,7 +12207,7 @@
|
||||
$.rmAll(board);
|
||||
$.add(board, Navigate.threadRoot);
|
||||
if (Conf['Unread Count']) {
|
||||
Navigate.ready('Unread Count', Unread.ready, Conf['Unread Count']);
|
||||
Navigate.ready('Unread Count', Unread.ready, !Conf['Quote Threading']);
|
||||
Unread.read();
|
||||
return Unread.update();
|
||||
}
|
||||
|
||||
@ -12196,7 +12196,7 @@
|
||||
$.rmAll(board);
|
||||
$.add(board, Navigate.threadRoot);
|
||||
if (Conf['Unread Count']) {
|
||||
Navigate.ready('Unread Count', Unread.ready, Conf['Unread Count']);
|
||||
Navigate.ready('Unread Count', Unread.ready, !Conf['Quote Threading']);
|
||||
Unread.read();
|
||||
return Unread.update();
|
||||
}
|
||||
|
||||
@ -294,7 +294,7 @@ Navigate =
|
||||
$.add board, Navigate.threadRoot
|
||||
|
||||
if Conf['Unread Count']
|
||||
Navigate.ready 'Unread Count', Unread.ready, Conf['Unread Count']
|
||||
Navigate.ready 'Unread Count', Unread.ready, not Conf['Quote Threading']
|
||||
Unread.read()
|
||||
Unread.update()
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user