Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Bypass image compression even on native if possible

authored by

uwx and committed by tangled.org 39eae538 c77d85e1

+4 -6
+4 -6
src/state/gallery.ts
··· 204 204 return img 205 205 } 206 206 207 - async function bypassCompressionOnWeb( 207 + async function bypassCompression( 208 208 img: ComposerImage, 209 209 ): Promise<PickerImage | undefined> { 210 210 const source = img.transformed || img.source ··· 261 261 highResolution?: boolean 262 262 }, 263 263 ): Promise<PickerImage> { 264 - if (IS_WEB) { 265 - const res = await bypassCompressionOnWeb(img) 266 - if (res) { 267 - return res 268 - } 264 + const res = await bypassCompression(img) 265 + if (res) { 266 + return res 269 267 } 270 268 271 269 const source = img.transformed || img.source