about summary refs log tree commit diff
path: root/app/controllers/api/v1/notifications_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-25 13:25:40 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-25 13:25:40 +0100
commit8a3745a4df89f5a5f980370dabfab8f95c92a5f8 (patch)
treec13fe590d729d73a2973982f0bebbbb23475d67e /app/controllers/api/v1/notifications_controller.rb
parent1ff0d5aea60363e65e749d3c44e4acd4cc9b5e36 (diff)
Remove stale entries from cache results
Diffstat (limited to 'app/controllers/api/v1/notifications_controller.rb')
-rw-r--r--app/controllers/api/v1/notifications_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/notifications_controller.rb b/app/controllers/api/v1/notifications_controller.rb
index d74b99a86..b23d7570d 100644
--- a/app/controllers/api/v1/notifications_controller.rb
+++ b/app/controllers/api/v1/notifications_controller.rb
@@ -39,6 +39,6 @@ class Api::V1::NotificationsController < ApiController
       end
     end
 
-    raw.map { |notification| cached_keys_with_value[notification.cache_key] || uncached[notification.id] }
+    raw.map { |notification| cached_keys_with_value[notification.cache_key] || uncached[notification.id] }.compact
   end
 end