Merge branch 'maunium:master' into feat/search-focus

This commit is contained in:
salixor 2023-01-08 21:53:27 +01:00 committed by GitHub
commit f090cc076e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ async def main(args: argparse.Namespace) -> None:
return return
input_packs.append(InputStickerSetShortName(short_name=match.group(1))) input_packs.append(InputStickerSetShortName(short_name=match.group(1)))
for input_pack in input_packs: for input_pack in input_packs:
pack: StickerSetFull = await client(GetStickerSetRequest(input_pack)) pack: StickerSetFull = await client(GetStickerSetRequest(input_pack, hash=0))
await reupload_pack(client, pack, args.output_dir) await reupload_pack(client, pack, args.output_dir)
else: else:
parser.print_help() parser.print_help()