mirror of
https://github.com/wah-su/stickerbridge.git
synced 2025-04-05 15:54:41 +00:00
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:
parent
6fd287bcd4
commit
f21c907f52
1 changed files with 7 additions and 0 deletions
|
@ -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"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue