+
+
+
+
@Model.Title
+
+ @Model.ProfileUser!.Status
+
-
-
@Model.ProfileUser.Hearts
-
@Model.ProfileUser.Comments
-
@Model.ProfileUser.UsedSlots / @ServerSettings.Instance.EntitledSlots
-
@Model.ProfileUser.PhotosByMe
+
+ @Model.ProfileUser.Hearts
+ @Model.ProfileUser.Comments
+ @Model.ProfileUser.UsedSlots / @ServerSettings.Instance.EntitledSlots
+ @Model.ProfileUser.PhotosByMe
+
diff --git a/ProjectLighthouse/Types/User.cs b/ProjectLighthouse/Types/User.cs
index 3e2384e4..e47b45a4 100644
--- a/ProjectLighthouse/Types/User.cs
+++ b/ProjectLighthouse/Types/User.cs
@@ -25,6 +25,19 @@ public class User
///
public string Biography { get; set; }
+ [NotMapped]
+ public string WebsiteAvatarHash {
+ get {
+ string avatarHash = this.IconHash;
+
+ if (string.IsNullOrWhiteSpace(avatarHash)) avatarHash = this.YayHash;
+ if (string.IsNullOrWhiteSpace(avatarHash)) avatarHash = this.MehHash;
+ if (string.IsNullOrWhiteSpace(avatarHash)) avatarHash = this.BooHash;
+
+ return avatarHash;
+ }
+ }
+
[NotMapped]
public int Reviews {
get {