diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 20:09:33 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-14 20:09:33 +0200 |
commit | 244d1307a3d5172230d93e74741e534772200bf0 (patch) | |
tree | b117cb6bf699dba64d4534a04e9f7df07acec5e9 /app/services | |
parent | a3384b6ea6608296277fada9444e257826fd582a (diff) |
Fix remove status service sending salmons
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/remove_status_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 030d23ff6..b8d6755b1 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -34,7 +34,7 @@ class RemoveStatusService < BaseService end def send_delete_salmon(account, status) - NotificationWorker.perform_async(status.stream_entry_id, account.id) + NotificationWorker.perform_async(status.stream_entry.id, account.id) end def remove_reblogs(status) |