Fix extending list of posts for download
This commit is contained in:
parent
65521ac145
commit
43489a67bd
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,3 +3,5 @@
|
|||||||
.mypy_cache
|
.mypy_cache
|
||||||
__pycache__
|
__pycache__
|
||||||
*.db
|
*.db
|
||||||
|
*.db-shm
|
||||||
|
*.db-wal
|
||||||
|
@ -65,7 +65,7 @@ else:
|
|||||||
download_count -= 100
|
download_count -= 100
|
||||||
download_offset += 100
|
download_offset += 100
|
||||||
posts_raw_tmp = vk.wall.get(domain=args.group, offset=download_offset, count=to_download)
|
posts_raw_tmp = vk.wall.get(domain=args.group, offset=download_offset, count=to_download)
|
||||||
posts_raw["items"].append(*posts_raw_tmp["items"])
|
posts_raw["items"].extend(posts_raw_tmp["items"])
|
||||||
last_post_count += len(posts_raw_tmp["items"])
|
last_post_count += len(posts_raw_tmp["items"])
|
||||||
posts = posts_raw["items"]
|
posts = posts_raw["items"]
|
||||||
for p in posts:
|
for p in posts:
|
||||||
|
Loading…
Reference in New Issue
Block a user