about summary refs log tree commit diff
path: root/lib/mastodon/media_cli.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-04-06 14:11:47 +0200
committerGitHub <noreply@github.com>2020-04-06 14:11:47 +0200
commitc99bc5d51bb588a56c7c8cfcee3a3a5ab3841a95 (patch)
tree076b40e62878bd665121023a849d21344685bcd5 /lib/mastodon/media_cli.rb
parent0773a512ac5019663545992a3300ae7ca0974876 (diff)
Fix regression in `tootctl media remove-orphans` (#13405)
Fix #13401
Diffstat (limited to 'lib/mastodon/media_cli.rb')
-rw-r--r--lib/mastodon/media_cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mastodon/media_cli.rb b/lib/mastodon/media_cli.rb
index 08a8f1093..0f211f272 100644
--- a/lib/mastodon/media_cli.rb
+++ b/lib/mastodon/media_cli.rb
@@ -276,7 +276,7 @@ module Mastodon
       preload_map = Hash.new { |hash, key| hash[key] = [] }
 
       objects.map do |object|
-        segments   = object.key.split('/').first
+        segments   = object.key.split('/')
         model_name = segments.first.classify
         record_id  = segments[2..-2].join.to_i