diff options
| author | Tulir Asokan <tulir@maunium.net> | 2022-11-15 12:58:38 +0200 |
|---|---|---|
| committer | Tulir Asokan <tulir@maunium.net> | 2022-11-15 12:58:38 +0200 |
| commit | f59406a47a6778cd402e656ffb64f667335f665a (patch) | |
| tree | c54beb7014c45540fc7ee3c68052d208bb4f2edf | |
| parent | 99ced8878aaf89a47dd8bdb592025ae2160d6f07 (diff) | |
Add missing parameter to getting sticker sets. Fixes #51
| -rw-r--r-- | sticker/stickerimport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sticker/stickerimport.py b/sticker/stickerimport.py index f153e98..db176e4 100644 --- a/sticker/stickerimport.py +++ b/sticker/stickerimport.py @@ -153,7 +153,7 @@ async def main(args: argparse.Namespace) -> None: return input_packs.append(InputStickerSetShortName(short_name=match.group(1))) 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) else: parser.print_help() |
