about summary refs log tree commit diff
path: root/src/lib/media/video/errors.ts
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-09-10 01:01:40 +0100
committerGitHub <noreply@github.com>2024-09-09 17:01:40 -0700
commit436e30fdedb4fd7a1ad462e5c37f4d6eefe8b4ae (patch)
treeebabbd93de8c2fdca0c12c3777a54ea8c285ab77 /src/lib/media/video/errors.ts
parent723a5e488eab40eac63a1983fc8cbbfa3992b3e7 (diff)
downloadvoidsky-436e30fdedb4fd7a1ad462e5c37f4d6eefe8b4ae.tar.zst
[Video] use correct max size (#5245)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/lib/media/video/errors.ts')
-rw-r--r--src/lib/media/video/errors.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/media/video/errors.ts b/src/lib/media/video/errors.ts
index 1c55a9ee9..5d91758c7 100644
--- a/src/lib/media/video/errors.ts
+++ b/src/lib/media/video/errors.ts
@@ -1,6 +1,6 @@
 export class VideoTooLargeError extends Error {
   constructor() {
-    super('Videos cannot be larger than 100MB')
+    super('Videos cannot be larger than 50mb')
     this.name = 'VideoTooLargeError'
   }
 }