Skip to content

Commit

Permalink
Default file attachment size restriction increased to 1GB
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Aug 27, 2023
1 parent 5f9752b commit be3baed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apprise/attachment/AttachBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit be3baed

Please sign in to comment.