allow for duplicate alter_text

This commit resolves a problem that stickers with
duplicated alternative texts will only gets one
sticker uploaded.
This commit is contained in:
zincentimeter 2024-03-24 03:51:05 +08:00
parent 6fd287bcd4
commit f21c907f52

View file

@ -15,6 +15,13 @@ class MatrixStickerset:
} }
def add_sticker(self, mxc_uri: str, alt_text: str): 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] = { self._content['images'][alt_text] = {
"url": mxc_uri, "url": mxc_uri,
"usage": ["sticker"] "usage": ["sticker"]