summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/cached_blob.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/cached_blob.rb b/app/models/cached_blob.rb
index fa95ecc70bd..53fc2ca9638 100644
--- a/app/models/cached_blob.rb
+++ b/app/models/cached_blob.rb
@@ -2,7 +2,7 @@ class CachedBlob
delegate *BlobsService::CACHED_METHODS, to: :@blob_cache
def initialize(blob_cache)
- @blob_cache = Hashie::Mash.new(blob_cache)
+ @blob_cache = OpenStruct.new(blob_cache)
end
def load_all_data!