Browse Source
Merge pull request #939 from jjlin/attachment-size
Fix attachment size limit calculation
pull/956/head
Daniel García
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
src/api/core/ciphers.rs
|
|
@ -665,8 +665,8 @@ fn post_attachment( |
|
|
|
let size_limit = if let Some(ref user_uuid) = cipher.user_uuid { |
|
|
|
match CONFIG.user_attachment_limit() { |
|
|
|
Some(0) => err_discard!("Attachments are disabled", data), |
|
|
|
Some(limit) => { |
|
|
|
let left = limit - Attachment::size_by_user(user_uuid, &conn); |
|
|
|
Some(limit_kb) => { |
|
|
|
let left = (limit_kb * 1024) - Attachment::size_by_user(user_uuid, &conn); |
|
|
|
if left <= 0 { |
|
|
|
err_discard!("Attachment size limit reached! Delete some files to open space", data) |
|
|
|
} |
|
|
@ -677,8 +677,8 @@ fn post_attachment( |
|
|
|
} else if let Some(ref org_uuid) = cipher.organization_uuid { |
|
|
|
match CONFIG.org_attachment_limit() { |
|
|
|
Some(0) => err_discard!("Attachments are disabled", data), |
|
|
|
Some(limit) => { |
|
|
|
let left = limit - Attachment::size_by_org(org_uuid, &conn); |
|
|
|
Some(limit_kb) => { |
|
|
|
let left = (limit_kb * 1024) - Attachment::size_by_org(org_uuid, &conn); |
|
|
|
if left <= 0 { |
|
|
|
err_discard!("Attachment size limit reached! Delete some files to open space", data) |
|
|
|
} |
|
|
|