From 46942f3e65c136f1c8477b87d5f5b36ac75fc64c Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 17 Aug 2014 12:14:57 -0700 Subject: [PATCH] fix condition in Unread.init --- src/Monitoring/Unread.coffee | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Monitoring/Unread.coffee b/src/Monitoring/Unread.coffee index 7fed9748a..2b7bc3a89 100755 --- a/src/Monitoring/Unread.coffee +++ b/src/Monitoring/Unread.coffee @@ -1,6 +1,11 @@ Unread = init: -> - return if g.VIEW isnt 'thread' or !Conf['Unread Count'] and !Conf['Unread Favicon'] and !Conf['Desktop Notifications'] and !Conf['Show Unread Count'] + return if g.VIEW isnt 'thread' or + !Conf['Unread Count'] and + !Conf['Unread Favicon'] and + !Conf['Unread Line'] and + !Conf['Desktop Notifications'] and + !(Conf['Thread Watcher'] and Conf['Show Unread Count']) @db = new DataBoard 'lastReadPosts', @sync @hr = $.el 'hr',