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.

image format fix

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

ayla c8d9d234 21e61ecb

+1 -1
+1 -1
src/lib/media/util.ts
··· 29 29 30 30 export function modifyImageFormat(uri: string, format: string) { 31 31 const sliced = uri.slice(0, -4) 32 - return sliced.at(-1) === '@' ? sliced + format : uri 32 + return sliced.at(-1) === '@' ? sliced + format : `${uri}@${format}` 33 33 }