about summary refs log tree commit diff
path: root/app/services/post_status_service.rb
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-01-25 11:37:49 +0100
committerThibaut Girka <thib@sitedethib.com>2019-01-25 11:37:49 +0100
commit04e2c673898203683a8a56f4910d07ba0685ed86 (patch)
tree25578e5b80973833f6d25380a1abb32cc116018a /app/services/post_status_service.rb
parentafec6b43eb856547ccc7083dbb677096d78821bf (diff)
parente1ec3a9f09add8a34b1a77ce217be8e51ebd4936 (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'app/services/post_status_service.rb')
-rw-r--r--app/services/post_status_service.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index 68cffe915..e4b61ee35 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -69,7 +69,10 @@ class PostStatusService < BaseService
   end
 
   def schedule_status!
-    if @account.statuses.build(status_attributes).valid?
+    status_for_validation = @account.statuses.build(status_attributes)
+    if status_for_validation.valid?
+      status_for_validation.destroy
+
       # The following transaction block is needed to wrap the UPDATEs to
       # the media attachments when the scheduled status is created