Skip to content

Commit

Permalink
allow lxmf messages to up to 10mb to be received by default
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Aug 2, 2024
1 parent c4a2c2d commit 117b02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshchat.py
Original file line number Diff line number Diff line change
Expand Up @@ -1929,7 +1929,7 @@ def set(self, value: int):
auto_resend_failed_messages_when_announce_received = BoolConfig("auto_resend_failed_messages_when_announce_received", True)
allow_auto_resending_failed_messages_with_attachments = BoolConfig("allow_auto_resending_failed_messages_with_attachments", False)
show_suggested_community_interfaces = BoolConfig("show_suggested_community_interfaces", True)
lxmf_delivery_transfer_limit_in_bytes = IntConfig("lxmf_delivery_transfer_limit_in_bytes", 1000 * 1000 * 1) # 1MB
lxmf_delivery_transfer_limit_in_bytes = IntConfig("lxmf_delivery_transfer_limit_in_bytes", 1000 * 1000 * 10) # 10MB


# an announce handler for lxmf.delivery aspect that just forwards to a provided callback
Expand Down

0 comments on commit 117b02c

Please sign in to comment.