Commit a70e53b4 authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

[ci skip] force getRaw to return raw response

parent 8960c99d
...@@ -19,7 +19,9 @@ const RepoService = { ...@@ -19,7 +19,9 @@ const RepoService = {
}, },
getRaw(url) { getRaw(url) {
return axios.get(url); return axios.get(url, {
transformResponse: [res => res],
});
}, },
buildParams(url = this.url) { buildParams(url = this.url) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment