mirror of
https://github.com/wah-su/stickerbridge.git
synced 2025-04-05 15:54:41 +00:00
Merge pull request 'allow for duplicate alter_text' (#15) from zincentimeter/stickerbridge:main into main
Reviewed-on: https://codeberg.org/Didek/stickerbridge/pulls/15
This commit is contained in:
commit
909ca1b0c1
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