0
0
Fork 0

Remove stale entries from cache results

This commit is contained in:
Eugen Rochko 2016-11-25 13:25:40 +01:00
parent 1ff0d5aea6
commit 8a3745a4df
3 changed files with 3 additions and 3 deletions

View file

@ -128,6 +128,6 @@ class Api::V1::AccountsController < ApiController
end
end
raw.map { |status| cached_keys_with_value[status.cache_key] || uncached[status.id] }
raw.map { |status| cached_keys_with_value[status.cache_key] || uncached[status.id] }.compact
end
end