diff --git a/app/soapbox/normalizers/__tests__/instance.test.ts b/app/soapbox/normalizers/__tests__/instance.test.ts index 24b0231d8..708adb6bb 100644 --- a/app/soapbox/normalizers/__tests__/instance.test.ts +++ b/app/soapbox/normalizers/__tests__/instance.test.ts @@ -10,7 +10,8 @@ describe('normalizeInstance()', () => { configuration: { media_attachments: {}, chats: { - max_characters: 500, + max_characters: 5000, + max_media_attachments: 1, }, polls: { max_options: 4, diff --git a/app/soapbox/reducers/__tests__/instance.test.ts b/app/soapbox/reducers/__tests__/instance.test.ts index b2edcd1dd..3c54692f0 100644 --- a/app/soapbox/reducers/__tests__/instance.test.ts +++ b/app/soapbox/reducers/__tests__/instance.test.ts @@ -13,7 +13,8 @@ describe('instance reducer', () => { description_limit: 1500, configuration: { chats: { - max_characters: 500, + max_characters: 5000, + max_media_attachments: 1, }, statuses: { max_characters: 500,