about summary refs log tree commit diff
path: root/app/services/delete_account_service.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2020-12-21 18:28:23 +0100
committerClaire <claire.github-309c@sitedethib.com>2020-12-21 18:28:23 +0100
commit38bfaf885543f349e88bb18edbc3536cefc0701c (patch)
tree8cd8f0b68c26bb46e14b20484b828df1159363a5 /app/services/delete_account_service.rb
parent61d5744dcc33d4cfdd26a38af138a4a416a93868 (diff)
parent43961035a906cd8bccdf4c1ac023980b37823bb3 (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'app/services/delete_account_service.rb')
-rw-r--r--app/services/delete_account_service.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/services/delete_account_service.rb b/app/services/delete_account_service.rb
index 9cb80c95a..fa834e775 100644
--- a/app/services/delete_account_service.rb
+++ b/app/services/delete_account_service.rb
@@ -122,7 +122,11 @@ class DeleteAccountService < BaseService
     @account.polls.reorder(nil).find_each do |poll|
       next if @options[:reserve_username] && reported_status_ids.include?(poll.status_id)
 
-      poll.destroy
+      # We can safely delete the poll rather than destroy it, as any non-reported
+      # status should have been deleted already, as long as we take care of
+      # notifications.
+      Notification.where(poll: poll).delete_all
+      poll.delete
     end
 
     associations_for_destruction.each do |association_name|