diff options
author | Morc - Richard Gráčik <r.gracik@gmail.com> | 2023-06-23 21:06:18 +0200 |
---|---|---|
committer | TheMorc <r.gracik@gmail.com> | 2023-06-23 21:15:02 +0200 |
commit | e26703f1e8369e18423a17db5e0bace769bea643 (patch) | |
tree | 4fa51cb16d46c6af436ae97fb83e95c5f90e2cbf | |
parent | 5b9a9bbc9ab2796074b38378f9d98d10c422c6d4 (diff) | |
download | abaddon-portaudio-e26703f1e8369e18423a17db5e0bace769bea643.tar.gz abaddon-portaudio-e26703f1e8369e18423a17db5e0bace769bea643.zip |
Update max attachment size for base users
-rw-r--r-- | src/constants.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants.hpp b/src/constants.hpp index 256f85e..5ed123c 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -4,7 +4,7 @@ constexpr static uint64_t SnowflakeSplitDifference = 600; constexpr static int MaxMessagesForChatCull = 50; // this has to be 50 (for now) cuz that magic number is used in a couple other places and i dont feel like replacing them constexpr static int AttachmentItemSize = 120; -constexpr static int BaseAttachmentSizeLimit = 8 * 1024 * 1024; +constexpr static int BaseAttachmentSizeLimit = 25 * 1024 * 1024; constexpr static int NitroClassicAttachmentSizeLimit = 50 * 1024 * 1024; constexpr static int NitroAttachmentSizeLimit = 100 * 1024 * 1024; constexpr static int BoostLevel2AttachmentSizeLimit = 50 * 1024 * 1024; |