| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
return base::ASCIIToWide(base::HexEncode(crypto::hash::Sha256(payload)));Turns out this fails because it's 64 chars long. The toast API has a max lenght of 64 chars *including the null terminator*.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
return base::ASCIIToWide(base::HexEncode(crypto::hash::Sha256(payload)));Turns out this fails because it's 64 chars long. The toast API has a max lenght of 64 chars *including the null terminator*.
Fixed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
ASSERT_NE(tagA.Get(), tagB.Get());The origins are included in the `notification_id` parameter by the `NotificationIdGenerator`, which this test suite bypasses by using a fixed `kNotificationId`, causing this assertion to fail. I think that's ok - best to remove this test?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |