This repository has no description
0

Configure Feed

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

bug: fix deployed url errors

+3 -1
+3 -1
src/features/takes/handlers/upload.ts
··· 153 153 const cdnUrls = await deployToHackClubCDN( 154 154 payload.files.map((file) => file.url_private), 155 155 ); 156 - mediaUrls.push(...cdnUrls.files); 156 + mediaUrls.push( 157 + ...cdnUrls.files.map((file) => file.deployedUrl), 158 + ); 157 159 } 158 160 } else if (payload.files && payload.files.length > 0) { 159 161 // For public channels, process media files in parallel