Fix serialization of Photo LargeHash

This commit is contained in:
Slendy 2023-04-10 01:59:54 -05:00
commit 5028266ca0
No known key found for this signature in database
GPG key ID: 7288D68361B91428

View file

@ -100,7 +100,7 @@ public class GamePhoto : ILbpSerializable, INeedsPreparationForSerialization
Timestamp = entity.Timestamp * 1000,
SmallHash = entity.SmallHash,
MediumHash = entity.MediumHash,
LargeHash = entity.MediumHash,
LargeHash = entity.LargeHash,
PlanHash = entity.PlanHash,
Subjects = entity.PhotoSubjects.ToSerializableList(GamePhotoSubject.CreateFromEntity),
};