mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-29 08:28:39 +00:00
Fix photo dates in-game
This commit is contained in:
parent
1e8ef8c679
commit
65e1ffc993
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue