mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-24 10:58:52 +08:00
Merge pull request #2193 from rainbowflesh/master
fix github action missing env
This commit is contained in:
commit
87ef48b826
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -81,6 +81,7 @@ jobs:
|
|||
- name: Build/release Electron app
|
||||
uses: samuelmeuli/action-electron-builder@v1.6.0
|
||||
env:
|
||||
VUE_APP_NETEASE_API_URL: /api
|
||||
VUE_APP_ELECTRON_API_URL: /api
|
||||
VUE_APP_ELECTRON_API_URL_DEV: http://127.0.0.1:10754
|
||||
VUE_APP_LASTFM_API_KEY: 09c55292403d961aa517ff7f5e8a3d9c
|
||||
|
|
|
@ -57,8 +57,16 @@ service.interceptors.response.use(
|
|||
},
|
||||
async error => {
|
||||
/** @type {import('axios').AxiosResponse | null} */
|
||||
const response = error.response;
|
||||
const data = response.data;
|
||||
let response;
|
||||
let data;
|
||||
if (error === 'TypeError: baseURL is undefined') {
|
||||
response = error;
|
||||
data = error;
|
||||
console.error("You must set up the baseURL in the service's config");
|
||||
} else if (error.response) {
|
||||
response = error.response;
|
||||
data = response.data;
|
||||
}
|
||||
|
||||
if (
|
||||
response &&
|
||||
|
|
Loading…
Reference in New Issue
Block a user