change
This commit is contained in:
parent
09ee934ac1
commit
45cca12ca1
|
@ -24,9 +24,10 @@ class Gitea::Repository::Entries::ListService < Gitea::ClientService
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_result(response)
|
def render_result(response)
|
||||||
|
body = JSON.parse(response.body)
|
||||||
case response.status
|
case response.status
|
||||||
when 200
|
when 200
|
||||||
JSON.parse(response.body).merge({"status": 1})
|
body.merge!({"status": 1})
|
||||||
else
|
else
|
||||||
{'status': -1, 'message': "#{body['message']}"}
|
{'status': -1, 'message': "#{body['message']}"}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue