mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 17:24:20 +02:00
...
This commit is contained in:
parent
2ea905dffd
commit
efda0e0275
1 changed files with 2 additions and 1 deletions
|
|
@ -1373,7 +1373,8 @@ def tags_older_than(self, tag, delta):
|
|||
if r is not None:
|
||||
if (now - r[self.FIELD_MAP['timestamp']]) > delta:
|
||||
tags = r[self.FIELD_MAP['tags']]
|
||||
if tags and tag in tags.lower().split(','):
|
||||
if tags and tag in [x.strip() for x in
|
||||
tags.lower().split(',')]:
|
||||
yield r[self.FIELD_MAP['id']]
|
||||
|
||||
def get_next_series_num_for(self, series):
|
||||
|
|
|
|||
Loading…
Reference in a new issue