diff options
-rw-r--r-- | src/luarocks/upload/api.lua | 7 |
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) |
244 | end | 245 | end |
245 | 246 | ||
246 | end | 247 | end |