From 7900ee4e3692dbd8056c3e47c81bb22eda030b65 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Mon, 14 Feb 2022 17:17:07 -0500 Subject: New upstream version 1.20.5. --- gallery_dl/extractor/vk.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gallery_dl/extractor/vk.py') diff --git a/gallery_dl/extractor/vk.py b/gallery_dl/extractor/vk.py index ed565bc..dd2eb4e 100644 --- a/gallery_dl/extractor/vk.py +++ b/gallery_dl/extractor/vk.py @@ -34,7 +34,6 @@ class VkExtractor(Extractor): def _pagination(self, photos_url, user_id): sub = re.compile(r"/imp[fg]/").sub needle = 'data-id="{}_'.format(user_id) - cnt = 0 headers = { "X-Requested-With": "XMLHttpRequest", @@ -56,7 +55,9 @@ class VkExtractor(Extractor): offset = payload[0] html = payload[1] - for cnt, photo in enumerate(text.extract_iter(html, needle, ')')): + cnt = 0 + for photo in text.extract_iter(html, needle, ')'): + cnt += 1 pid = photo[:photo.find('"')] url = photo[photo.rindex("(")+1:] url = sub("/", url.partition("?")[0]) -- cgit v1.2.3