From f21c907f52735aa2f683ba0f22ca24a4c8a0a70c Mon Sep 17 00:00:00 2001 From: zincentimeter Date: Sun, 24 Mar 2024 03:51:05 +0800 Subject: [PATCH] allow for duplicate alter_text This commit resolves a problem that stickers with duplicated alternative texts will only gets one sticker uploaded. --- stickerbridge/sticker_types.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/stickerbridge/sticker_types.py b/stickerbridge/sticker_types.py index 367e92c..e0c3a3d 100644 --- a/stickerbridge/sticker_types.py +++ b/stickerbridge/sticker_types.py @@ -15,6 +15,13 @@ class MatrixStickerset: } def add_sticker(self, mxc_uri: str, alt_text: str): + if alt_text in self._content['images']: + duplicate_counter = 1 + alt_text = alt_text + '-' + str(duplicate_counter) + while (alt_text in self._content['images']): + duplicate_counter += 1 + alt_text = alt_text.split('-')[0] + '-' + str(duplicate_counter) + print(alt_text) self._content['images'][alt_text] = { "url": mxc_uri, "usage": ["sticker"]