From 3b21f45fcc4aa93068fa0bc1b4c4b978e5d9f824 Mon Sep 17 00:00:00 2001 From: Netsky <56271887+TheNetsky@users.noreply.github.com> Date: Wed, 5 Nov 2025 13:12:28 +0100 Subject: [PATCH] Change Bing login URL to rewards dashboard Updated the Bing login URL to redirect to the rewards dashboard. --- src/functions/Login.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions/Login.ts b/src/functions/Login.ts index edb72b1..09698d5 100644 --- a/src/functions/Login.ts +++ b/src/functions/Login.ts @@ -35,7 +35,7 @@ export class Login { this.bot.log(this.bot.isMobile, 'LOGIN', 'Starting login process!') // Navigate to the Bing login page - await page.goto('https://rewards.bing.com/signin') + await page.goto('https://www.bing.com/rewards/dashboard') // Disable FIDO support in login request await page.route('**/GetCredentialType.srf*', (route: any) => { @@ -559,4 +559,4 @@ export class Login { throw this.bot.log(this.bot.isMobile, 'CHECK-LOCKED', 'This account has been locked! Remove the account from "accounts.json" and restart!', 'error') } } -} \ No newline at end of file +}