返回提交历史
Modified
g4f/gui/client/static/js/chat.v1.js
+1
-1
XFEstudio/gpt4free
Fix SpeechRecognition on Phone
97d34592
代码差异
1 个文件
+1
-1
@@ -1288,7 +1288,7 @@ if (SpeechRecognition) {
1288
1288
};
1289
1289
recognition.onresult = function(event) {
1290
1290
window.clearTimeout(timeoutHandle);
1291
timeoutHandle = window.setTimeout(may_stop, transcript ? 10000 : 8000);
1291
timeoutHandle = window.setTimeout(may_stop, 8000);
1292
1292
if (!event.results) {
1293
1293
return;
1294
1294
}