From 65e17cdfc8b1be953ca7875cffa640156bb360c4 Mon Sep 17 00:00:00 2001 From: jvyden Date: Wed, 6 Oct 2021 18:47:23 -0400 Subject: [PATCH] Allow user to update icon --- ProjectLighthouse/Controllers/UserController.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ProjectLighthouse/Controllers/UserController.cs b/ProjectLighthouse/Controllers/UserController.cs index 790f1c32..8027a6f3 100644 --- a/ProjectLighthouse/Controllers/UserController.cs +++ b/ProjectLighthouse/Controllers/UserController.cs @@ -80,6 +80,10 @@ namespace ProjectLighthouse.Controllers { } break; } + case "icon": { + user.IconHash = await reader.GetValueAsync(); + break; + } } break; case XmlNodeType.EndElement: