diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 02:13:30 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-25 02:13:30 +0100 |
commit | a08e724476f47b85de9bb334eeadaf882a7a23ee (patch) | |
tree | d779668fa289d2b7077c878b19fc6691a57142b7 /lib | |
parent | 9594f0e858172b9295c5598fcb6ab10506d3046d (diff) |
Fix subscriptions:clear task, refactor feeds, refactor streamable activites
and atom feed generation to some extent, as well as the way mentions are stored
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/subscriptions.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/subscriptions.rake b/lib/tasks/subscriptions.rake index 875bd8ae6..77cbd94d3 100644 --- a/lib/tasks/subscriptions.rake +++ b/lib/tasks/subscriptions.rake @@ -5,7 +5,7 @@ namespace :subscriptions do accounts = Account.where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0').where.not(domain: nil) accounts.each do |a| - a.subscription(api_subscription_url(a.id)).unsubscribe + a.subscription('').unsubscribe a.update!(verify_token: '', secret: '') end end |