Don't register non-existent tags

This commit is contained in:
luoliyan 2017-02-21 17:37:01 +09:30
parent 2539896b22
commit 2d40baa95f

View File

@ -89,7 +89,8 @@ class TagManager:
if not newTags:
return
# cache tag names
self.register(newTags)
if add:
self.register(newTags)
# find notes missing the tags
if add:
l = "tags not "