tangled
alpha
login
or
join now
robinwobin.dev
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
make download toasts appear again (tho not very good)
Daniela Henkel
7 months ago
4c5153b0
cc950052
+2
-4
1 changed file
expand all
collapse all
unified
split
src
components
PostControls
PostMenu
PostMenuItems.tsx
+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
392
-
// FIXME
393
393
-
// Toast.show('Downloading video...', 'download')
392
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
406
-
// FIXME
407
407
-
// Toast.show('Downloading GIF...', 'download')
405
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})