Fix nil error regression from in tootctl media remove ()

Fix 
This commit is contained in:
Eugen Rochko 2018-11-08 21:55:59 +01:00 committed by GitHub
parent 4615512285
commit 16a16f62c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
lib/mastodon

View File

@ -53,7 +53,7 @@ module Mastodon
Maintenance::UncacheMediaWorker.new.perform(m) unless options[:dry_run]
options[:verbose] ? say(m.id) : say('.', :green, false)
processed += 1
size += m.file_file_size
size += m.file_file_size || 0
end
end
end