Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/functions/activities/api/DoubleSearchPoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 5 additions & 1 deletion src/functions/activities/api/FindClippy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 5 additions & 1 deletion src/functions/activities/api/Quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 5 additions & 1 deletion src/functions/activities/api/UrlReward.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 5 additions & 1 deletion src/functions/activities/browser/SearchOnBing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down