diff options
Diffstat (limited to 'acf/persistence/backends/volatile.lua')
-rw-r--r-- | acf/persistence/backends/volatile.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acf/persistence/backends/volatile.lua b/acf/persistence/backends/volatile.lua index 63d7265..165e7fc 100644 --- a/acf/persistence/backends/volatile.lua +++ b/acf/persistence/backends/volatile.lua @@ -29,7 +29,7 @@ function backend:_get(path) return res end -function backend:get(path) +function backend:get(path, tpe) local res = self:_get(path) return type(res) == 'table' and keys(res) or res end |