fix: various fixes to sentry-reported errors and more

This commit is contained in:
Hampus Kraft
2026-02-18 15:38:51 +00:00
parent 302c0d2a0c
commit 0517a966a3
357 changed files with 25420 additions and 16281 deletions

View File

@@ -26,6 +26,7 @@ export const APIErrorCodesDescriptions: Record<keyof typeof APIErrorCodes, strin
APPLICATION_NOT_OWNED: 'You do not own this application',
BAD_GATEWAY: 'Bad gateway',
BAD_REQUEST: 'Bad request',
BLUESKY_OAUTH_AUTHORIZATION_FAILED: 'The Bluesky handle could not be resolved for authorisation',
BLUESKY_OAUTH_CALLBACK_FAILED: 'The Bluesky OAuth callback could not be processed',
BLUESKY_OAUTH_NOT_ENABLED: 'Bluesky OAuth connections are not enabled on this instance',
BLUESKY_OAUTH_SESSION_EXPIRED: 'The Bluesky OAuth session has expired or been revoked',
@@ -65,6 +66,10 @@ export const APIErrorCodesDescriptions: Record<keyof typeof APIErrorCodes, strin
CANNOT_SHRINK_RESERVED_SLOTS: 'Cannot shrink reserved slots',
CAPTCHA_REQUIRED: 'Captcha verification is required',
CHANNEL_INDEXING: 'Channel is currently being indexed',
CHUNKED_UPLOAD_CHUNK_INDEX_OUT_OF_RANGE: 'Chunk index is out of range for this upload',
CHUNKED_UPLOAD_INCOMPLETE: 'Not all chunks have been uploaded',
CHUNKED_UPLOAD_NOT_FOUND: 'Chunked upload session was not found',
CHUNKED_UPLOAD_NOT_OWNED: 'You do not own this chunked upload session',
COMMUNICATION_DISABLED: 'You are timed out in this guild',
CONNECTION_ALREADY_EXISTS: 'A connection of this type with this identifier already exists',
CONNECTION_INITIATION_TOKEN_INVALID: 'The connection initiation token is invalid or has expired',