mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Counting saved stories when not count exists.
This commit is contained in:
parent
5e36e46049
commit
901f10eef5
1 changed files with 1 additions and 1 deletions
|
@ -2223,7 +2223,7 @@ class MStarredStoryCounts(mongo.Document):
|
|||
if c['feed_id']:
|
||||
feed_total += c['count']
|
||||
|
||||
if try_counting and total != feed_total:
|
||||
if try_counting and (total != feed_total or not len(counts)):
|
||||
user = User.objects.get(pk=user_id)
|
||||
logging.user(user, "~FC~SBCounting~SN saved stories (%s total vs. %s counted)..." %
|
||||
(total, feed_total))
|
||||
|
|
Loading…
Add table
Reference in a new issue