Explorar el Código

Fix nil error regression from #9229 in tootctl media remove (#9239)

Fix #9237
master
Eugen Rochko hace 5 años
committed by GitHub
padre
commit
16a16f62c7
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      lib/mastodon/media_cli.rb

+ 1
- 1
lib/mastodon/media_cli.rb Ver fichero

@@ -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


Cargando…
Cancelar
Guardar