From 3d65c1508e5424839603f9caa998045fef4ab984 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Mon, 23 Dec 2024 22:12:13 +0500 Subject: [PATCH] fix: url state key if no import name is provided --- stickerbridge/matrix_reuploader.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stickerbridge/matrix_reuploader.py b/stickerbridge/matrix_reuploader.py index b836165..7e3f00a 100644 --- a/stickerbridge/matrix_reuploader.py +++ b/stickerbridge/matrix_reuploader.py @@ -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)