aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/luarocks/upload/api.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/luarocks/upload/api.lua b/src/luarocks/upload/api.lua
index dd0f1309..bb2197ee 100644
--- a/src/luarocks/upload/api.lua
+++ b/src/luarocks/upload/api.lua
@@ -237,10 +237,11 @@ function Api:request(url, params, post_params)
237 if self.debug then 237 if self.debug then
238 util.printout(tostring(status)) 238 util.printout(tostring(status))
239 end 239 end
240 if status ~= 200 then 240 local pok, ret, err = pcall(json.decode, table.concat(out))
241 return nil, "API returned " .. tostring(status) .. " - " .. redact_api_url(url) 241 if pok and ret then
242 return ret
242 end 243 end
243 return json.decode(table.concat(out)) 244 return nil, "API returned " .. tostring(status) .. " - " .. redact_api_url(url)
244end 245end
245 246
246end 247end