aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/json.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/json.lua b/util/json.lua
index 6251af1a..67276765 100644
--- a/util/json.lua
+++ b/util/json.lua
@@ -17,7 +17,7 @@ local newproxy, getmetatable = newproxy, getmetatable;
local print = print;
local has_array, array = pcall(require, "util.array");
-local array_mt = hasarray and getmetatable(array()) or {};
+local array_mt = has_array and getmetatable(array()) or {};
--module("json")
local json = {};