[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

Select the types of activity you want to include in your feed.

fix game

gree45 (Jan 28, 2025, 1:43 PM +0100) 2ba577e1 6cb647f2

+3 -3
+3 -3
src/routes/game/[kind]/[id]/[kind2]/[id2]/[counter]/+page.server.ts
··· 14 14 export async function load(event) { 15 15 const id = "10193"; 16 16 const kind = "movie"; 17 - const counter=0; 17 + const couter=0; 18 18 19 19 if (kind !== 'movie' && kind !== 'tv') { 20 20 return error(404, 'Not found'); ··· 38 38 39 39 const castPromise = getCast(id, kind); 40 40 41 - const [result, trailer, recommendations, watchProviders, ratings, cast, counter] = await Promise.all([ 41 + const [result, trailer, recommendations, watchProviders, ratings, cast] = await Promise.all([ 42 42 resultPromise, 43 43 trailerPromise, 44 44 recommendationsPromise, ··· 70 70 watchProviders, 71 71 ratings, 72 72 cast, 73 - counter 73 + couter 74 74 }; 75 75 }