diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue
index 82d28f30e8b48538ebc305f91ebc05f9e8c575ea..f2c625a556be82db66613efe4da64918aa98cd02 100644
--- a/src/client/components/post-form.vue
+++ b/src/client/components/post-form.vue
@@ -615,7 +615,7 @@ export default defineComponent({
 				viaMobile: isMobile
 			};
 
-			if (this.withHashtags) {
+			if (this.withHashtags && this.hashtags && this.hashtags.trim() !== '') {
 				const hashtags = this.hashtags.trim().split(' ').map(x => x.startsWith('#') ? x : '#' + x).join(' ');
 				data.text = data.text ? `${data.text} ${hashtags}` : hashtags;
 			}