about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2021-01-18 14:37:57 +0100
committerGitHub <noreply@github.com>2021-01-18 14:37:57 +0100
commit73d5b050196e9fdbe4c09f7d8650eed7562f2a08 (patch)
treec8f898f74d17137205f5324f8189c71f36bf913b /lib
parenta7a47834e50645746355e2b9a88244c1804c73cd (diff)
parente202314a75d3277c26f151764ff183d61dd2f9d0 (diff)
Merge pull request #1484 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib')
-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 5f4a414b1..59c118500 100644
--- a/lib/mastodon/media_cli.rb
+++ b/lib/mastodon/media_cli.rb
@@ -326,7 +326,7 @@ module Mastodon
       end
 
       preload_map.each_with_object({}) do |(model_name, record_ids), model_map|
-        model_map[model_name] = model_name.constantize.where(id: record_ids).each_with_object({}) { |record, record_map| record_map[record.id] = record }
+        model_map[model_name] = model_name.constantize.where(id: record_ids).index_by(&:id)
       end
     end
   end