diff --git a/ProjectLighthouse/Types/Serialization/GamePhoto.cs b/ProjectLighthouse/Types/Serialization/GamePhoto.cs index 4da3f6b6..a53187fd 100644 --- a/ProjectLighthouse/Types/Serialization/GamePhoto.cs +++ b/ProjectLighthouse/Types/Serialization/GamePhoto.cs @@ -96,7 +96,8 @@ public class GamePhoto : ILbpSerializable, INeedsPreparationForSerialization { 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, MediumHash = entity.MediumHash, LargeHash = entity.MediumHash,