Only run mastodon:push:clear on accounts that are still subscribed to
This commit is contained in:
parent
683c42724f
commit
625056fa47
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace :mastodon do
|
||||||
task clear: :environment do
|
task clear: :environment do
|
||||||
include RoutingHelper
|
include RoutingHelper
|
||||||
|
|
||||||
Account.remote.without_followers.find_each do |a|
|
Account.remote.without_followers.where.not(subscription_expires_at: nil).find_each do |a|
|
||||||
Rails.logger.debug "PuSH unsubscribing from #{a.acct}"
|
Rails.logger.debug "PuSH unsubscribing from #{a.acct}"
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in a new issue