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:
Zixaphir 2014-01-11 11:37:11 -07:00
parent 1277d32161
commit 1e24021c07
3 changed files with 3 additions and 3 deletions

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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()