From e160f5b94fac615320b423a0eb48061ef1f4377c Mon Sep 17 00:00:00 2001 From: peteruithoven Date: Fri, 29 Nov 2013 13:28:54 +0100 Subject: [PATCH] Updated api info url --- src/rest/response.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest/response.lua b/src/rest/response.lua index 01e5121..84665f2 100644 --- a/src/rest/response.lua +++ b/src/rest/response.lua @@ -91,7 +91,7 @@ function M:setError(msg) self.body.status = 'error' if msg ~= '' then self.body.msg = msg end - self:addData('more_info', 'http://' .. defaults.API_BASE_URL_PATH .. '/wiki/wiki/communication-api') + self:addData('more_info', 'http://' .. defaults.API_BASE_URL_PATH .. '/api') end --- Adds a data item to the response, this will be included under the `data` item of the json text.