Change media attachment limit to 10000 characters (#39306)

This commit is contained in:
Claire
2026-06-08 16:03:56 +02:00
committed by GitHub
parent 37a9048cdf
commit c4ea89dfd9
2 changed files with 3 additions and 2 deletions

View File

@@ -54,7 +54,8 @@ const messages = defineMessages({
},
});
const MAX_LENGTH = 1500;
// TODO: use `description_limit` from the `/api/v2/instance` response
const MAX_LENGTH = 10000;
type FocalPoint = [number, number];