Browse Source

Fix Tombstone.delete_all ArgumentError (#9978)

pull/4/head
abcang 5 years ago
committed by Eugen Rochko
parent
commit
e186bd2fb0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/activitypub/process_account_service.rb

+ 1
- 1
app/services/activitypub/process_account_service.rb View File

@ -212,7 +212,7 @@ class ActivityPub::ProcessAccountService < BaseService
end
def clear_tombstones!
Tombstone.delete_all(account_id: @account.id)
Tombstone.where(account_id: @account.id).delete_all
end
def protocol_changed?

Loading…
Cancel
Save