[
https://issues.apache.org/jira/browse/GUACAMOLE-2222?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18059999#comment-18059999
]
Bradley Bennett edited comment on GUACAMOLE-2222 at 2/21/26 2:03 AM:
---------------------------------------------------------------------
[~vnick] Ah, I understand the core issue now. This issue happens when accessing
Guacamole via http:. https works fine. No new ticket required.
was (Author: JIRAUSER311824):
[~vnick] Ah, I understand the core issue now. This issue happens when accessing
Guacamole via http:. https works fine.
> Guacamole (HTTP): After browser blur & focus, mouse events not generated
> ------------------------------------------------------------------------
>
> Key: GUACAMOLE-2222
> URL: https://issues.apache.org/jira/browse/GUACAMOLE-2222
> Project: Guacamole
> Issue Type: Bug
> Components: guacamole-client
> Affects Versions: 1.6.1
> Reporter: Bradley Bennett
> Priority: Minor
>
> I believe we are looping in {*}checkClipboardSync(){*}, i.e.
> *clipboardSyncInProgress* is true & not being cleared.
> {code:java}
> function waitForClipboardSync() {
> return new Promise((resolve) => {
> function checkClipboardSync() {
> if (!clipboardSyncInProgress) { << looping
> resolve();
> return;
> } // Synchronization can take 8-10ms,
> so check again shortly
> // to not add slight latency in fast environments.
> setTimeout(checkClipboardSync, 10);
> } checkClipboardSync();
> });
> } {code}
> Still investigation.
> Not sure if this is relevant, but connecting to a *Debian 13 aarch64 VM* from
> a Mac Chrome browser via a Guacamole staging/1.6.1 installed in {*}Rocky 9
> aarch VM{*}.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)