refactor: 更新时差问题

This commit is contained in:
Argo Zhang 2025-11-21 12:37:47 +08:00
parent 4ea2e7360d
commit 9ecca28fc2
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public static class Util
};
var createdAt = BinaryPrimitives.ReadUInt32LittleEndian(buffer.Slice(4, 4));
var dtm = new DateTimeOffset(1970, 1, 1, 0, 0, 0, TimeSpan.FromHours(8));
var dtm = new DateTimeOffset(1970, 1, 1, 0, 0, 0, TimeSpan.FromHours(0));
ret.CreatedTime = dtm.AddSeconds(createdAt);
return ret;