fix: api path & docker image name

This commit is contained in:
MengYX
2021-12-25 11:46:01 +08:00
parent 48b8194363
commit ce3de22d0e
2 changed files with 12 additions and 10 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}`;
}