[booru] fix issue with multiple tags

This commit is contained in:
Mike Fährmann
2017-05-04 11:58:51 +02:00
parent fc9223c072
commit 85a46ed700

View File

@@ -117,7 +117,7 @@ class BooruTagExtractor(BooruExtractor):
def __init__(self, match):
BooruExtractor.__init__(self)
self.tags = text.unquote(match.group(1))
self.tags = text.unquote(match.group(1).replace("+", " "))
self.params["tags"] = self.tags
def get_job_metadata(self):