"...gpu/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "c822c48dd38d89c7b9bc7bcbdf9da8543f515b84"
Commit f78e6a5f authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: auto playback

parent 411e6c2f
...@@ -751,7 +751,7 @@ ...@@ -751,7 +751,7 @@
copyToClipboard(responseMessage.content); copyToClipboard(responseMessage.content);
} }
if ($settings.responseAutoPlayback) { if ($settings.responseAutoPlayback && !$showCallOverlay) {
await tick(); await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click(); document.getElementById(`speak-button-${responseMessage.id}`)?.click();
} }
...@@ -977,8 +977,9 @@ ...@@ -977,8 +977,9 @@
copyToClipboard(responseMessage.content); copyToClipboard(responseMessage.content);
} }
if ($settings.responseAutoPlayback) { if ($settings.responseAutoPlayback && !$showCallOverlay) {
await tick(); await tick();
document.getElementById(`speak-button-${responseMessage.id}`)?.click(); document.getElementById(`speak-button-${responseMessage.id}`)?.click();
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment