Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Allow a post to contain only a quote (#3577)

* allow posts with only a quote

* bump version while we're at it

authored by

Hailey and committed by
GitHub
38074854 6980cc7f

+7 -2
+1 -1
package.json
··· 1 1 { 2 2 "name": "bsky.app", 3 - "version": "1.78.0", 3 + "version": "1.79.0", 4 4 "private": true, 5 5 "engines": { 6 6 "node": ">=18"
+6 -1
src/view/com/composer/Composer.tsx
··· 214 214 215 215 setError('') 216 216 217 - if (richtext.text.trim().length === 0 && gallery.isEmpty && !extLink) { 217 + if ( 218 + richtext.text.trim().length === 0 && 219 + gallery.isEmpty && 220 + !extLink && 221 + !quote 222 + ) { 218 223 setError(_(msg`Did you want to say anything?`)) 219 224 return 220 225 }