| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
NSString* ns_exception = error.userInfo[@"WKJavaScriptExceptionMessage"];nit: can you please move this line into the if block?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
NSString* ns_exception = error.userInfo[@"WKJavaScriptExceptionMessage"];nit: can you please move this line into the if block?
This string is used on line 115, so I left it here instead of putting it into the block since that condition is usually going to be checked as well. wdyt about leaving it here?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
NSString* ns_exception = error.userInfo[@"WKJavaScriptExceptionMessage"];Mike Doughertynit: can you please move this line into the if block?
This string is used on line 115, so I left it here instead of putting it into the block since that condition is usually going to be checked as well. wdyt about leaving it here?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Update JS Error Report params
- Replace url with page_url to allow better grouping of reports
- Add url filename extension to report (if available). This isn't as
reliable as MIME type, but it does provide some context about the larger
URL since only the scheme and host are available in the URL.
- Add error domain and code to native reports to assist with better
grouping because error messages are localized.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |