Skip to content

Commit 26cbfa3

Browse files
committed
fix mdlint...again
1 parent be0cae6 commit 26cbfa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/tutorials/node_js/filter_blocked_requests_using_sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ const gotoFunction = async ({ request, page }) => {
180180
};
181181
```
182182

183-
Now we have access to the session in the `handlePageFunction` and the rest of the logic is the same as in the first example. We extract the session from the userData, try/catch the whole code and on success we add the session and on error we delete it. Also it is useful to retire the browser completely (check [here](https://docs.apify.com/academy/node-js/handle-blocked-requests-puppeteer) for reference) since the other requests will probably have similar problem.
183+
Now we have access to the session in the `handlePageFunction` and the rest of the logic is the same as in the first example. We extract the session from the userData, try/catch the whole code and on success we add the session and on error we delete it. Also it is useful to retire the browser completely (see [handling blocked requests with Puppeteer](https://docs.apify.com/academy/node-js/handle-blocked-requests-puppeteer) for reference) since the other requests will probably have similar problem.
184184

185185
```js
186186
const handlePageFunction = async ({ request, page, puppeteerPool }) => {

0 commit comments

Comments
 (0)