remotes/1693045480750635534/spooky-22
Aevann1 2021-09-23 00:03:28 +02:00
parent 23a9f47287
commit 2f11f56395
1 changed files with 9 additions and 9 deletions

View File

@ -228,16 +228,16 @@ def sanitize(sanitized, noimages=False):
except: except:
pass pass
for i in re.finditer('\w*(?<!"):([^ ]{1,30}?):', sanitized): # for i in re.finditer('\w*(?<!"):([^ ]{1,30}?):', sanitized):
emoji = i.group(1).lower() # emoji = i.group(1).lower()
if path.isfile(f'./files/assets/images/emojis/{emoji}.webp'): # if path.isfile(f'./files/assets/images/emojis/{emoji}.webp'):
sanitized = sanitized.replace(f':{emoji}:', f'<img loading="lazy" data-toggle="tooltip" alt=":{emoji}:" title=":{emoji}:" delay="0" height=30 src="https://{site}/assets/images/emojis/{emoji}.webp">') # sanitized = sanitized.replace(f':{emoji}:', f'<img loading="lazy" data-toggle="tooltip" alt=":{emoji}:" title=":{emoji}:" delay="0" height=30 src="https://{site}/assets/images/emojis/{emoji}.webp">')
try: # try:
if emoji in session["favorite_emojis"]: session["favorite_emojis"][emoji] += 1 # if emoji in session["favorite_emojis"]: session["favorite_emojis"][emoji] += 1
else: session["favorite_emojis"][emoji] = 1 # else: session["favorite_emojis"][emoji] = 1
except: # except:
pass # pass
sanitized = sanitized.replace("https://www.", "https://").replace("https://youtu.be/", "https://youtube.com/watch?v=").replace("https://music.youtube.com/watch?v=", "https://youtube.com/watch?v=").replace("https://open.spotify.com/", "https://open.spotify.com/embed/").replace("https://streamable.com/", "https://streamable.com/e/").replace("https://youtube.com/shorts/", "https://youtube.com/watch?v=").replace("https://mobile.", "https://").replace("https://m.", "https://") sanitized = sanitized.replace("https://www.", "https://").replace("https://youtu.be/", "https://youtube.com/watch?v=").replace("https://music.youtube.com/watch?v=", "https://youtube.com/watch?v=").replace("https://open.spotify.com/", "https://open.spotify.com/embed/").replace("https://streamable.com/", "https://streamable.com/e/").replace("https://youtube.com/shorts/", "https://youtube.com/watch?v=").replace("https://mobile.", "https://").replace("https://m.", "https://")