From 2687ef6bd90ba6417222af299d5009c82d7f01c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 2 Jun 2022 22:17:15 +0200 Subject: [PATCH] [nozomi] remove slashes from search terms (fixes #2653) --- gallery_dl/extractor/nozomi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gallery_dl/extractor/nozomi.py b/gallery_dl/extractor/nozomi.py index 4dc880fe..7d7c3f8d 100644 --- a/gallery_dl/extractor/nozomi.py +++ b/gallery_dl/extractor/nozomi.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2019-2021 Mike Fährmann +# Copyright 2019-2022 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -201,6 +201,7 @@ class NozomiSearchExtractor(NozomiExtractor): return decode_nozomi(self.request(url).content) for tag in self.tags: + tag = tag.replace("/", "") if tag[0] == "-": if not index: index = set(nozomi("index"))