XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Fix SpeechRecognition on Phone

c15242fa
Heiner Lohaus <hlohaus@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified g4f/gui/client/static/js/chat.v1.js +1 -1
@@ -1264,8 +1264,8 @@ if (SpeechRecognition) {
1264 1264 let shouldStop = false;
1265 1265 function may_stop() {
1266 1266 if (microLabel.classList.contains("recognition")) {
1267 recognition.stop();
1268 1267 shouldStop = true
1268 recognition.stop();
1269 1269 }
1270 1270 }
1271 1271