fix: api path & docker image name

(cherry picked from commit ce3de22d0e25f8cdf13e455baaae657bf61ee56a)
This commit is contained in:
MengYX
2021-12-25 11:46:01 +08:00
parent 62cd276c5d
commit 96fccaeec7
2 changed files with 11 additions and 9 deletions

View File

@@ -108,7 +108,6 @@ export async function querySongInfoById(id: string | number): Promise<SongInfoRe
throw new Error('请求信息失败');
}
const QQ_MUSIC_COVER_URI = 'https://stats.ixarea.com/apis/music/qq-cover';
export function getQMImageURLFromPMID(pmid: string, type = 1): string {
return `${QQ_MUSIC_COVER_URI}/${type}/${pmid}`;
return `${IXAREA_API_ENDPOINT}/music/qq-cover/${type}/${pmid}`;
}