increase max file size for thubm generation

This commit is contained in:
James Pine 2024-10-12 00:59:27 -07:00
parent 06e227d17a
commit 0ac05f46b3

View File

@ -6,7 +6,7 @@ const MIB: u64 = 1_048_576;
/// The maximum file size that an image can be in order to have a thumbnail generated.
///
/// This value is in MiB.
pub const MAXIMUM_FILE_SIZE: u64 = MIB * 192;
pub const MAXIMUM_FILE_SIZE: u64 = MIB * 1024;
/// These are roughly all extensions supported by the `image` crate, as of `v0.24.7`.
///