ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
16
fork

Configure Feed

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

fix(api): add kysely type for upload date

byarielm.fyi abfef83d 7f060c4f

verified
+1 -1
+1 -1
packages/api/src/repositories/UploadRepository.ts
··· 104 104 .selectFrom('user_uploads') 105 105 .select('upload_id') 106 106 .where('user_did', '=', userDid) 107 - .where('created_at', '>', sql`NOW() - INTERVAL '5 seconds'`) 107 + .where('created_at', '>', sql<Date>`NOW() - INTERVAL '5 seconds'`) 108 108 .orderBy('created_at', 'desc') 109 109 .limit(1) 110 110 .execute();