We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0fdb9 commit 339e18dCopy full SHA for 339e18d
ui/src/components/ai-chat/component/operation-button/ChatOperationButton.vue
@@ -314,7 +314,9 @@ class AudioManage {
314
.then(async (res: any) => {
315
if (res.type === 'application/json') {
316
const text = await res.text()
317
- MsgError(text)
+ if (this.tryList[index] >= 3) {
318
+ MsgError(text)
319
+ }
320
this.statusList[index] = AudioStatus.ERROR
321
throw ''
322
}
@@ -375,8 +377,9 @@ class AudioManage {
375
377
376
378
379
-
380
381
382
383
384
385
// 假设我们有一个 MP3 文件的字节数组
0 commit comments