客户端模式的同步服务连接允许重定向 5 次(#2109)

pull/2078/head^2
lyswhut 2024-11-10 11:05:59 +08:00
parent 9237dbbc18
commit 0345419ef3
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@
- 优化播放详情页UI歌曲名字、歌手等文字过长时被截断的问题#2049
- Scheme URL 的播放歌曲允许更长的专辑名称
- 播放本地歌曲时,将优先尝试读取本地同名字的 `jpg``png` 图片作为播放封面显示,若文件不存在则从音频文件内读取,最后再尝试使用在线图片(#2096
- 客户端模式的同步服务连接允许重定向 5 次(#2109
### 修复

View File

@ -6,6 +6,7 @@ export const request = async(url: string, options: RequestOptions = { }) => {
return httpFetch(url, {
...options,
timeout: options.timeout ?? 10000,
follow_max: 5,
}).then(response => {
return {
text: response.body,