Fixing timezone option of formatDateTime

This commit is contained in:
Olli Draese 2024-12-11 05:46:17 +02:00
parent 88f7b53d8c
commit 07c8c772e7

View File

@ -538,6 +538,10 @@ private:
*dest = '-';
offset = -offset;
}
else
{
*dest = '+';
}
writeNumber2(dest + 1, offset / 3600);
writeNumber2(dest + 3, offset % 3600 / 60);