about summary refs log tree commit diff
path: root/app/lib
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-03-18 00:41:32 +0100
committerGitHub <noreply@github.com>2021-03-18 00:41:32 +0100
commit5027abecd1e5e511064de75fb5248139e1c8fe23 (patch)
tree52325b75c25018397019ffb41593109b52683ea8 /app/lib
parent43eff898a0b0f31aaf042d9d387aaece2627a01d (diff)
Fix cache_collection crashing when given an empty collection (#15921)
* Fix cache_collection crashing when given an empty collection

* Add tests
Diffstat (limited to 'app/lib')
-rw-r--r--app/lib/entity_cache.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/entity_cache.rb b/app/lib/entity_cache.rb
index 5d51e8585..80b0046ee 100644
--- a/app/lib/entity_cache.rb
+++ b/app/lib/entity_cache.rb
@@ -16,7 +16,9 @@ class EntityCache
   end
 
   def emoji(shortcodes, domain)
-    shortcodes   = Array(shortcodes)
+    shortcodes = Array(shortcodes)
+    return [] if shortcodes.empty?
+
     cached       = Rails.cache.read_multi(*shortcodes.map { |shortcode| to_key(:emoji, shortcode, domain) })
     uncached_ids = []