orchestrix-yuri 4.2.2 → 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gateway/router.js +1 -1
- package/package.json +1 -1
package/lib/gateway/router.js
CHANGED
|
@@ -622,7 +622,7 @@ class Router {
|
|
|
622
622
|
// Detect active agent: an agent showing the Command table or
|
|
623
623
|
// "How can I assist" is IDLE (waiting). A window WITHOUT these
|
|
624
624
|
// patterns is actively executing a task.
|
|
625
|
-
const idlePatterns = /Command.*Description
|
|
625
|
+
const idlePatterns = /Command.*Description/i;
|
|
626
626
|
|
|
627
627
|
// Pass 1: find window with spinner (definitely working)
|
|
628
628
|
for (let w = 0; w < 4; w++) {
|