From 5028266ca05ba7bd2af7d0887d9135397f732c15 Mon Sep 17 00:00:00 2001 From: Slendy Date: Mon, 10 Apr 2023 01:59:54 -0500 Subject: [PATCH] Fix serialization of Photo LargeHash --- ProjectLighthouse/Types/Serialization/GamePhoto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/Serialization/GamePhoto.cs b/ProjectLighthouse/Types/Serialization/GamePhoto.cs index 771fe2a9..c5e66d3a 100644 --- a/ProjectLighthouse/Types/Serialization/GamePhoto.cs +++ b/ProjectLighthouse/Types/Serialization/GamePhoto.cs @@ -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), };