1 files changed, 2 insertions, 0 deletions
diff --git a/util/src/entities/Config.ts b/util/src/entities/Config.ts
index a2942db7..3726e122 100644
--- a/util/src/entities/Config.ts
+++ b/util/src/entities/Config.ts
@@ -86,6 +86,7 @@ export interface ConfigValue {
maxReactions: number;
maxAttachmentSize: number;
maxBulkDelete: number;
+ maxEmbedDownloadSize: number;
};
channel: {
maxPins: number;
@@ -251,6 +252,7 @@ export const DefaultConfigOptions: ConfigValue = {
maxTTSCharacters: 200,
maxReactions: 20,
maxAttachmentSize: 8388608,
+ maxEmbedDownloadSize: 1024 * 1024 * 5,
maxBulkDelete: 100,
},
channel: {
|