[tumblr:search] fix 'ValueError: not enough values to unpack' (#8079)

fixes regression introduced in 21160a8b08
This commit is contained in:
Mike Fährmann
2025-08-20 08:43:09 +02:00
parent a8b334e866
commit d9d8172364
2 changed files with 10 additions and 5 deletions

View File

@@ -382,7 +382,7 @@ class TumblrSearchExtractor(TumblrExtractor):
example = "https://www.tumblr.com/search/QUERY"
def posts(self):
_, _, _, search, mode, post_type, query = self.groups
search, mode, post_type, query = self.groups
params = text.parse_query(query)
return self.api.search(text.unquote(search), params, mode, post_type)