Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
const auto start_padding = buffer->discard_padding()
should this check `discard_padding &&`? no idea if that can happen - it's just a reflexive comment.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
const auto start_padding = buffer->discard_padding()
should this check `discard_padding &&`? no idea if that can happen - it's just a reflexive comment.
no, it shouldn't. At this point `discard_padding` should be ignored in favor of `buffer->discard_padding()`. I also want to move the logic to determine what the discard padding is into its own method so it's a little more clear. This method is massive. But that refactor can come after the crash fix.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |