a fun bot for the hc slack

chore: fix private channel uploads

dunkirk.sh 1c8afe47 39ae37eb

verified
Changed files
+2 -1
src
features
takes
handlers
+2 -1
src/features/takes/handlers/upload.ts
···
// Check if the message is from a private channel
if (
payload.channel_type === "im" ||
-
payload.channel_type === "mpim"
+
payload.channel_type === "mpim" ||
+
payload.channel_type === "group"
) {
// Process all files in one batch for private channels
if (payload.files && payload.files.length > 0) {