Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge remote-tracking branch 'origin/main' into main-origin

uwx 0a748a3d 27831d43

+3 -3
+1 -1
src/screens/Settings/RunesSettings.tsx
··· 1325 1325 </Toggle.Item> 1326 1326 <Admonition type="info" style={[a.flex_1]}> 1327 1327 <Trans> 1328 - Images will be served as PNG instead of JPEG. Images will take 1328 + Images will be served as PNG instead of WEBP. Images will take 1329 1329 longer to load and use more bandwidth. 1330 1330 </Trans> 1331 1331 </Admonition>
+2 -2
src/state/preferences/high-quality-images.tsx
··· 50 50 function modifyHighQualityImage(src: string) { 51 51 try { 52 52 const url = new URL(src) 53 - if (url.hostname === 'cdn.bsky.app' && url.pathname.endsWith('@jpeg')) { 54 - url.pathname = url.pathname.replace(/@jpeg$/, '@png') 53 + if (url.hostname === 'cdn.bsky.app') { 54 + url.pathname = url.pathname += '@png' 55 55 return url.toString() 56 56 } 57 57 } catch {