修复播放某些在线音频会没有声音的问题

pull/1397/head
lyswhut 2023-05-22 15:37:28 +08:00
parent b7f355bd1a
commit dab81116e9
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
- 修复列表名翻译显示
- 修复因插入数字类型的ID导致其意外在末尾追加 .0 导致列表数据异常的问题,同时也可能导致同步数据丢失的问题(要完全修复这个问题还需要同时将移动端、同步服务更新到最新版本)
- 修复下载时出现302错误的问题
- 修复播放某些在线音频会没有声音的问题
### 其他

View File

@ -53,6 +53,7 @@ export const createAudio = () => {
audio.controls = false
audio.autoplay = true
audio.preload = 'auto'
audio.crossOrigin = 'anonymous'
}
const initAnalyser = () => {