You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
if (len(message_encoded) +OTP_PADDING_LENGTH+message_otp_padding_length) >len(our_pads):
137
-
ui_queue.put({"type": "showerror", "title": "Failed to send message", "message": f"Your message size ({len(message_encoded) +OTP_PADDING_LENGTH+message_otp_padding_length}) is larger than our pads size ({len(our_pads)}), please send a shorter message"})
138
-
returnFalse
133
+
logger.info("Your message size (%d) is larger than our pads size (%s), therefore we are generating new pads for you", len(message_encoded) +OTP_PADDING_LENGTH+message_otp_padding_length, len(our_pads))
0 commit comments