From f5be3f886e1bccf44804b82d01e9aaf174059212 Mon Sep 17 00:00:00 2001
From: ValueOn AG
Date: Mon, 16 Feb 2026 16:08:14 +0100
Subject: [PATCH] fix: update user-agent to current Edge 131 - Teams blocks old
Chrome 121 with unsupported browser redirect
Co-authored-by: Cursor
---
src/bot/orchestrator.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bot/orchestrator.ts b/src/bot/orchestrator.ts
index 7a4f8f7..fd139b5 100644
--- a/src/bot/orchestrator.ts
+++ b/src/bot/orchestrator.ts
@@ -551,7 +551,7 @@ export class BotOrchestrator {
this._context = await this._browser.newContext({
permissions: ['microphone', 'camera'],
viewport: { width: 1280, height: 720 },
- userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36',
+ userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0',
});
this._page = await this._context.newPage();