| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Request::isNavigationRequest() always returns false. It reads $this->data['isNavigationRequest'] ?? false, but serializeRequest() in bin/playwright-server.js never includes the field, so the default is all any caller ever sees.
Added it to the payload alongside resourceType, using the same defensive req.isNavigationRequest ? ... : false shape as the neighbouring properties.
Verified against a route handler on a page with a subresource: the document request now reports true and a stylesheet request reports false (both reported false before).