Procházet zdrojové kódy

Some images can cause `convert` to fail, which crashes this whole task (#6565)

* Some images can cause `convert` to fail, which crashes this whole task

* Add more specific exception
master
Paul Woolcock před 6 roky
committed by Eugen Rochko
rodič
revize
76198c63b6
1 změnil soubory, kde provedl 7 přidání a 3 odebrání
  1. +7
    -3
      lib/tasks/mastodon.rake

+ 7
- 3
lib/tasks/mastodon.rake Zobrazit soubor

@@ -494,9 +494,13 @@ namespace :mastodon do
accounts = accounts.where(domain: ENV['DOMAIN']) if ENV['DOMAIN'].present?

accounts.find_each do |account|
account.reset_avatar!
account.reset_header!
account.save
begin
account.reset_avatar!
account.reset_header!
account.save
rescue Paperclip::Error
puts "Error resetting avatar and header for account #{username}@#{domain}"
end
end
end
end


Načítá se…
Zrušit
Uložit