Skip to content

Commit cf7144e

Browse files
committed
fix: CI
1 parent 9477a14 commit cf7144e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/actor-scraper/puppeteer-scraper/src/internals/crawler_setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export class CrawlerSetup implements CrawlerSetupOptions {
185185
launchContext: {
186186
useChrome: this.input.useChrome,
187187
launchOptions: {
188-
ignoreHTTPSErrors: this.input.ignoreSslErrors,
188+
acceptInsecureCerts: this.input.ignoreSslErrors,
189189
defaultViewport: DEFAULT_VIEWPORT,
190190
devtools: this.devtools,
191191
args,

packages/actor-scraper/web-scraper/src/internals/crawler_setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export class CrawlerSetup implements CrawlerSetupOptions {
228228
launchContext: {
229229
useChrome: this.input.useChrome,
230230
launchOptions: {
231-
ignoreHTTPSErrors: this.input.ignoreSslErrors,
231+
acceptInsecureCerts: this.input.ignoreSslErrors,
232232
defaultViewport: DEFAULT_VIEWPORT,
233233
args,
234234
headless: this.input.headless,

packages/apify/src/proxy_configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ export class ProxyConfiguration extends CoreProxyConfiguration {
305305
return this._handleTieredUrl(
306306
sessionId ?? cryptoRandomObjectId(6),
307307
options,
308-
).proxyUrl;
308+
).proxyUrl ?? undefined;
309309
}
310310

311311
return this.composeDefaultUrl(sessionId);

0 commit comments

Comments
 (0)