summaryrefslogtreecommitdiff
path: root/xmake/core/cache/memcache.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core/cache/memcache.lua')
-rw-r--r--xmake/core/cache/memcache.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/cache/memcache.lua b/xmake/core/cache/memcache.lua
index 2a3b9802e..ffdcd25f3 100644
--- a/xmake/core/cache/memcache.lua
+++ b/xmake/core/cache/memcache.lua
@@ -58,7 +58,7 @@ end
-- get cache value in level/3
function _instance:get3(key1, key2, key3)
- local value2 = self:get2(key1)
+ local value2 = self:get2(key1, key2)
if value2 ~= nil then
return value2[key3]
end