]> cat aescling's git repositories - mastodon.git/commitdiff
Fix unintended cache (#6214)
authorYamagishi Kazutoshi <ykzts@desire.sh>
Sun, 7 Jan 2018 14:12:59 +0000 (23:12 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Sun, 7 Jan 2018 14:12:59 +0000 (15:12 +0100)
app/controllers/application_controller.rb

index f59f2725b68ac7f5c9d9d8fb31d5d28e5a39ae53..dae1804c24bf799c9305d420603aed2fb76900bf 100644 (file)
@@ -124,15 +124,15 @@ class ApplicationController < ActionController::Base
 
   def render_cached_json(cache_key, **options)
     options[:expires_in] ||= 3.minutes
-    options[:public]     ||= true
     cache_key              = cache_key.join(':') if cache_key.is_a?(Enumerable)
+    cache_public           = options.key?(:public) ? options.delete(:public) : true
     content_type           = options.delete(:content_type) || 'application/json'
 
     data = Rails.cache.fetch(cache_key, { raw: true }.merge(options)) do
       yield.to_json
     end
 
-    expires_in options[:expires_in], public: options[:public]
+    expires_in options[:expires_in], public: cache_public
     render json: data, content_type: content_type
   end