diff --git a/package.json b/package.json index 62923434a0..4b2b6187a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.78.0", + "version": "1.79.0", "private": true, "engines": { "node": ">=18" diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 24f61a2ee1..2d5c9ee7f3 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -214,7 +214,12 @@ export const ComposePost = observer(function ComposePost({ setError('') - if (richtext.text.trim().length === 0 && gallery.isEmpty && !extLink) { + if ( + richtext.text.trim().length === 0 && + gallery.isEmpty && + !extLink && + !quote + ) { setError(_(msg`Did you want to say anything?`)) return }