Fix photo dates in-game

This commit is contained in:
Slendy 2023-03-28 11:18:24 -05:00
commit 65e1ffc993
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -96,7 +96,8 @@ public class GamePhoto : ILbpSerializable, INeedsPreparationForSerialization
{ {
SlotId = entity.SlotId.GetValueOrDefault(), SlotId = entity.SlotId.GetValueOrDefault(),
}, },
Timestamp = entity.Timestamp, // Timestamps are uploaded and stored in seconds but game expects milliseconds
Timestamp = entity.Timestamp * 1000,
SmallHash = entity.SmallHash, SmallHash = entity.SmallHash,
MediumHash = entity.MediumHash, MediumHash = entity.MediumHash,
LargeHash = entity.MediumHash, LargeHash = entity.MediumHash,