core/log: fix encoding 29 second deltas (again)

Forgot the second if statement and didn't actually fix the bug last time.
This commit is contained in:
outfoxxed 2024-09-10 16:30:50 -07:00
parent 01f6331cb7
commit 3690812919
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -594,7 +594,7 @@ bool EncodedLogWriter::write(const LogMessage& message) {
this->buffer.writeU8(field);
if (secondDelta > 29) {
if (secondDelta >= 0x1d) {
if (secondDelta > 0xffff) {
writeFullTimestamp();
} else {