Probably fix for static emojis from #25

This commit is contained in:
2023-01-30 10:54:43 +01:00
parent eaec6f2fe8
commit f98fb0b6dc
3 changed files with 20 additions and 17 deletions

View File

@@ -319,7 +319,7 @@ class HoloUser():
if progress["state"] == "fill" and progress["sent"] is False:
if msg.text is not None:
msg.text = fix_text(msg.text)
msg.text = fix_text(str(msg.text))
if stage == 2:
@@ -445,7 +445,7 @@ class HoloUser():
stage = progress["stage"]
if msg.text is not None:
msg.text = fix_text(msg.text)
msg.text = fix_text(str(msg.text))
elif msg.caption is not None:
msg.caption = fix_text(msg.caption)