diff --git a/src/functions/activities/api/DoubleSearchPoints.ts b/src/functions/activities/api/DoubleSearchPoints.ts index a80981dc..89099ac6 100644 --- a/src/functions/activities/api/DoubleSearchPoints.ts +++ b/src/functions/activities/api/DoubleSearchPoints.ts @@ -22,7 +22,11 @@ export class DoubleSearchPoints extends Workers { } this.cookieHeader = this.bot.browser.func.buildCookieHeader( - this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop + this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop, [ + 'bing.com', + 'live.com', + 'microsoftonline.com' + ] ) const fingerprintHeaders = { ...this.bot.fingerprint.headers } diff --git a/src/functions/activities/api/FindClippy.ts b/src/functions/activities/api/FindClippy.ts index c5138a57..92c30782 100644 --- a/src/functions/activities/api/FindClippy.ts +++ b/src/functions/activities/api/FindClippy.ts @@ -26,7 +26,11 @@ export class FindClippy extends Workers { } this.cookieHeader = this.bot.browser.func.buildCookieHeader( - this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop + this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop, [ + 'bing.com', + 'live.com', + 'microsoftonline.com' + ] ) const fingerprintHeaders = { ...this.bot.fingerprint.headers } diff --git a/src/functions/activities/api/Quiz.ts b/src/functions/activities/api/Quiz.ts index 07c5b0d4..ca20c57b 100644 --- a/src/functions/activities/api/Quiz.ts +++ b/src/functions/activities/api/Quiz.ts @@ -24,7 +24,11 @@ export class Quiz extends Workers { try { this.cookieHeader = this.bot.browser.func.buildCookieHeader( - this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop + this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop, [ + 'bing.com', + 'live.com', + 'microsoftonline.com' + ] ) const fingerprintHeaders = { ...this.bot.fingerprint.headers } diff --git a/src/functions/activities/api/UrlReward.ts b/src/functions/activities/api/UrlReward.ts index 7dd35698..cb47aef2 100644 --- a/src/functions/activities/api/UrlReward.ts +++ b/src/functions/activities/api/UrlReward.ts @@ -31,7 +31,11 @@ export class UrlReward extends Workers { try { this.cookieHeader = this.bot.browser.func.buildCookieHeader( - this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop + this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop, [ + 'bing.com', + 'live.com', + 'microsoftonline.com' + ] ) const fingerprintHeaders = { ...this.bot.fingerprint.headers } diff --git a/src/functions/activities/browser/SearchOnBing.ts b/src/functions/activities/browser/SearchOnBing.ts index c9c798fa..776231a3 100644 --- a/src/functions/activities/browser/SearchOnBing.ts +++ b/src/functions/activities/browser/SearchOnBing.ts @@ -33,7 +33,11 @@ export class SearchOnBing extends Workers { try { this.cookieHeader = this.bot.browser.func.buildCookieHeader( - this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop + this.bot.isMobile ? this.bot.cookies.mobile : this.bot.cookies.desktop, [ + 'bing.com', + 'live.com', + 'microsoftonline.com' + ] ) const fingerprintHeaders = { ...this.bot.fingerprint.headers }