| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (read_result.value_or(0) != 0) {
LOG(ERROR) << "Failed to read message header, read returned "
<< read_result.value_or(0);
}AFAICT this will treat errors as EOF since ReadAtCurrentPos returns nullopt on error so I think it would be better to provide a default of '-1' to indicate error and disambiguate from EOF.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
if (read_result.value_or(0) != 0) {
LOG(ERROR) << "Failed to read message header, read returned "
<< read_result.value_or(0);
}AFAICT this will treat errors as EOF since ReadAtCurrentPos returns nullopt on error so I think it would be better to provide a default of '-1' to indicate error and disambiguate from EOF.
| 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. |
Use span-based file API in native_messaging_reader.cc
No (intended) functionality changes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |