about summary refs log tree commit diff
path: root/app/lib/bangtags.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/bangtags.rb')
-rw-r--r--app/lib/bangtags.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb
index 40714097b..536606065 100644
--- a/app/lib/bangtags.rb
+++ b/app/lib/bangtags.rb
@@ -730,10 +730,14 @@ class Bangtags
 
     account.user.save
 
-    status.text = @chunks.join
-    status.save
-
-    postprocess_after_save
+    text = @chunks.join
+    if text.blank?
+      RemoveStatusService.new.call(@status)
+    else
+      status.text = text
+      status.save
+      postprocess_after_save
+    end
   end
 
   private