Bluesky app fork with some witchin' additions 💫

make download toasts appear again (tho not very good)

+2 -4
+2 -4
src/components/PostControls/PostMenu/PostMenuItems.tsx
··· 389 389 const pdsUrl = await resolvePdsServiceUrl(did as `did:${string}`) 390 390 const uri = `${pdsUrl}/xrpc/com.atproto.sync.getBlob?did=${did}&cid=${cid}` 391 391 392 - // FIXME 393 - // Toast.show('Downloading video...', 'download') 392 + Toast.show(_(msg({message: 'Downloading video...', context: 'toast'}))) 394 393 395 394 let success 396 395 if (isWeb) success = await downloadVideoWeb({uri: uri}) ··· 403 402 const onPressDownloadGif = async () => { 404 403 if (!gifEmbed) return 405 404 406 - // FIXME 407 - // Toast.show('Downloading GIF...', 'download') 405 + Toast.show(_(msg({message: 'Downloading GIF...', context: 'toast'}))) 408 406 409 407 let success 410 408 if (isWeb) success = await downloadVideoWeb({uri: gifEmbed.external.uri})