Increase emoji chcracter length check

merge-requests/30/head
Bob Mottram 2022-07-29 17:05:22 +01:00
parent 651fa18e5d
commit 9d7856f9c0
1 changed files with 1 additions and 1 deletions

View File

@ -1781,7 +1781,7 @@ def _receive_zot_reaction(recent_posts_cache: {},
print('DEBUG: ' + message_json['object']['type'] +
' content is not string')
return False
if len(message_json['object']['content']) > 2:
if len(message_json['object']['content']) > 4:
if debug:
print('DEBUG: content is too long to be an emoji reaction')
return False