summaryrefslogtreecommitdiff
path: root/changelogs/unreleased/56851-blank-values-in-reactive-cache.yml
Commit message (Collapse)AuthorAgeFilesLines
* Allow blank values to be stored in reactive cacheReuben Pereira2019-02-181-0/+5
Reactive caching concern was using .present? to determine if it got a valid value from the cache. This returns false for values such as false, [], {}. Change this check to !.nil? instead.