Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
117
fork

Configure Feed

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

fix high quality images tweak on other app views

i dont really use other app views but this seemed to work when using blacksky?

authored by

daniela.lol and committed by
Tangled
be076a58 5d662082

+4 -1
+4 -1
src/state/preferences/high-quality-images.tsx
··· 51 51 try { 52 52 const url = new URL(src) 53 53 if (url.hostname === 'cdn.bsky.app') { 54 - url.pathname = url.pathname += "@png" 54 + // bluesky does not have this in urls anymore, but some forks like blacksky still do this so we need to still check for this 55 + if (url.pathname.endsWith('@jpeg')) 56 + url.pathname = url.pathname.replace(/@jpeg$/, '@png') 57 + else url.pathname = url.pathname += '@png' 55 58 return url.toString() 56 59 } 57 60 } catch {