Browse Source

Fix an error when file_file_size is nil in tootctl media remove (#14657)

master
Takeshi Umeda 3 years ago
committed by GitHub
parent
commit
175cd4f8ef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/mastodon/media_cli.rb

+ 1
- 1
lib/mastodon/media_cli.rb View File

@ -31,7 +31,7 @@ module Mastodon
processed, aggregate = parallelize_with_progress(MediaAttachment.cached.where.not(remote_url: '').where('created_at < ?', time_ago)) do |media_attachment|
next if media_attachment.file.blank?
size = media_attachment.file_file_size + (media_attachment.thumbnail_file_size || 0)
size = (media_attachment.file_file_size || 0) + (media_attachment.thumbnail_file_size || 0)
unless options[:dry_run]
media_attachment.file.destroy

Loading…
Cancel
Save