Fix unplayed podcast statistics calculation

This commit is contained in:
Thomas Perl 2011-02-02 00:24:12 +01:00
parent b849e7b5cc
commit 19c36ad921
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ class Database(object):
deleted += count
elif state == gpodder.STATE_NORMAL and is_new:
new += count
elif state == gpodder.STATE_DOWNLOADED and not is_new:
elif state == gpodder.STATE_DOWNLOADED and is_new:
downloaded += count
unplayed += count
elif state == gpodder.STATE_DOWNLOADED: