mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-10 05:48:39 +00:00
Fix serialization of Photo LargeHash
This commit is contained in:
parent
a706ef6836
commit
5028266ca0
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ public class GamePhoto : ILbpSerializable, INeedsPreparationForSerialization
|
||||||
Timestamp = entity.Timestamp * 1000,
|
Timestamp = entity.Timestamp * 1000,
|
||||||
SmallHash = entity.SmallHash,
|
SmallHash = entity.SmallHash,
|
||||||
MediumHash = entity.MediumHash,
|
MediumHash = entity.MediumHash,
|
||||||
LargeHash = entity.MediumHash,
|
LargeHash = entity.LargeHash,
|
||||||
PlanHash = entity.PlanHash,
|
PlanHash = entity.PlanHash,
|
||||||
Subjects = entity.PhotoSubjects.ToSerializableList(GamePhotoSubject.CreateFromEntity),
|
Subjects = entity.PhotoSubjects.ToSerializableList(GamePhotoSubject.CreateFromEntity),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue