only ignore upper case tags
This commit is contained in:
parent
9e41a778f2
commit
aef2dd7790
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ class Engine:
|
|||
changed = True
|
||||
for playlist in self.playlists:
|
||||
for tag in playlist.get('tags', []):
|
||||
if tag.islower() and tag not in self.state['keywords']:
|
||||
if not tag.isupper() and tag not in self.state['keywords']:
|
||||
self.state['keywords'][tag] = {'value': 0}
|
||||
changed = True
|
||||
if changed:
|
||||
|
|
Loading…
Reference in a new issue