Fix "tootctl media remove-orphans" crashing when encountering invalid media (#13170)

Fixes #13168
This commit is contained in:
Eugen Rochko 2020-03-05 15:56:01 +01:00 committed by GitHub
parent 036ba3f510
commit d081a80cff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,6 +170,7 @@ class MediaAttachment < ApplicationRecord
def variant?(other_file_name)
return true if file_file_name == other_file_name
return false if file_file_name.nil?
formats = file.styles.values.map(&:format).compact