Skip to content

Commit

Permalink
fix: Returning case-insensitive data in CacheFS (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelhertman committed Jul 3, 2023
1 parent 3ae409e commit 052ab90
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/CacheFS.brs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
' @import /components/rokuComponents/EVPDigest.brs

' WARNING: the service must be used on the Task threads.
function CacheFS() as Object
prototype = {}

Expand Down Expand Up @@ -26,7 +28,7 @@ function CacheFS() as Object

content = ReadAsciiFile(filePath)

return ParseJson(content)
return ParseJson(content, "i")
end function

' Writes data into cachefs under the specific key
Expand Down

0 comments on commit 052ab90

Please sign in to comment.