fix: url state key if no import name is provided

This commit is contained in:
Kentai Radiquum 2024-12-23 22:12:13 +05:00
parent 2ff23b5b41
commit 3d65c1508e
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -69,6 +69,8 @@ class MatrixReuploader:
pack_location = import_name
if isDefault:
pack_location = ""
elif pack_location.startswith("http"):
pack_location = pack_location.split("/")[-1]
await upload_stickerpack(self.client, self.room.room_id, stickerset, pack_location)