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

Configure Feed

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

Fix inverted condition in moveIfNecessary (#10238)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

authored by

Samuel Newman
Claude Opus 4.6 (1M context)
and committed by
GitHub
c56427c6 9c502b38

+1 -1
+1 -1
src/state/gallery.ts
··· 277 277 async function moveIfNecessary(from: string) { 278 278 const cacheDir = IS_NATIVE && getImageCacheDirectory() 279 279 280 - if (cacheDir && from.startsWith(cacheDir)) { 280 + if (cacheDir && !from.startsWith(cacheDir)) { 281 281 const to = joinPath(cacheDir, nanoid(36)) 282 282 283 283 await makeDirectoryAsync(cacheDir, {intermediates: true})