deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

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

another useless one down

Signed-off-by: ayla <ayla-git.barcode041@silomails.com>

ayla a4a094fa 6fa05d97

+2 -4
+2 -2
src/components/Post/Embed/ImageEmbed.tsx
··· 54 54 55 55 const pngSized = 56 56 (loadAsPngs 57 - ? (recordImage.size && 57 + ? (recordImage.image.size && 58 58 recordImage.quality === 100 && 59 59 recordImage.image.size <= PNG_IMG_MAX_BYTE) || 60 60 (img.aspectRatio && ··· 70 70 pngSized || 71 71 (loadAsPngs && 72 72 recordImage.quality === 100 && 73 - recordImage.mime !== 'image/jpeg') 73 + recordImage.image.mime !== 'image/jpeg') 74 74 ? 'png' 75 75 : fullsizeFormat, 76 76 )
-1
src/lib/api/index.ts
··· 312 312 image: res.data.blob, 313 313 alt: image.alt, 314 314 aspectRatio: {width, height}, 315 - mime: mime, 316 315 quality, 317 316 } 318 317 }),
-1
src/types/bsky/post.ts
··· 158 158 aspectRatio?: AppBskyEmbedDefs.AspectRatio 159 159 mime?: string 160 160 quality?: number 161 - size?: number 162 161 } 163 162 164 163 export interface BetterImages {