diff --git a/server/routes.ts b/server/routes.ts index c53a568..8b4197b 100644 --- a/server/routes.ts +++ b/server/routes.ts @@ -30,7 +30,7 @@ export async function findVideoByAnyId(id: string) { // If it's an 8-character short ID, find by short ID if (id.length === 8) { - const allVideos = await storage.getVideos(200, 0); + const allVideos = await storage.getVideos(1000, 0); return allVideos.find(v => v.id.replace(/-/g, '').substring(0, 8) === id); }