diff --git a/ProjectLighthouse/Types/Serialization/GameUserSlot.cs b/ProjectLighthouse/Types/Serialization/GameUserSlot.cs index 5b95ba20..427c250f 100644 --- a/ProjectLighthouse/Types/Serialization/GameUserSlot.cs +++ b/ProjectLighthouse/Types/Serialization/GameUserSlot.cs @@ -246,7 +246,7 @@ public class GameUserSlot : SlotBase, INeedsPreparationForSerialization AuthorPhotoCount = database.Photos.Count(p => p.SlotId == this.SlotId && p.CreatorId == this.CreatorId), HeartCount = database.HeartedLevels.Count(h => h.SlotId == this.SlotId), Username = database.Users.Where(u => u.UserId == this.CreatorId).Select(u => u.Username).First(), - IconHash = database.Users.Where(u => u.UserId == this.CreatorId).Select(u => u.Username).First(), + IconHash = database.Users.Where(u => u.UserId == this.CreatorId).Select(u => u.IconHash).First(), }) .OrderBy(_ => 1) .FirstAsync();