From be3baed7e3d33bae973f1714df4ebbf65aa33f85 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 27 Aug 2023 16:54:21 -0400 Subject: [PATCH] Default file attachment size restriction increased to 1GB --- apprise/attachment/AttachBase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apprise/attachment/AttachBase.py b/apprise/attachment/AttachBase.py index 2b05c849..9244289b 100644 --- a/apprise/attachment/AttachBase.py +++ b/apprise/attachment/AttachBase.py @@ -68,7 +68,8 @@ class AttachBase(URLBase): # set to zero (0), then no check is performed # 1 MB = 1048576 bytes # 5 MB = 5242880 bytes - max_file_size = 5242880 + # 1 GB = 1048576000 bytes + max_file_size = 1048576000 # By default all attachments types are inaccessible. # Developers of items identified in the attachment plugin directory