alpha
Login
or
Join now
dunkirk.sh
/
smokie
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
bug: fix deployed url errors
author
Kieran Klukas
date
1 year ago
(May 29, 2025, 5:17 PM -0400)
commit
d2c347cf
d2c347cf7b91be4abc781a1492a1ea97690bc981
parent
f09a4441
f09a44417190d2329820048be883007c09fac4c0
+3
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
features
takes
handlers
upload.ts
+3
-1
src/features/takes/handlers/upload.ts
Reviewed
···
153
153
const cdnUrls = await deployToHackClubCDN(
154
154
payload.files.map((file) => file.url_private),
155
155
);
156
156
-
mediaUrls.push(...cdnUrls.files);
156
156
+
mediaUrls.push(
157
157
+
...cdnUrls.files.map((file) => file.deployedUrl),
158
158
+
);
157
159
}
158
160
} else if (payload.files && payload.files.length > 0) {
159
161
// For public channels, process media files in parallel