diff --git a/UI/Components/SpeedrunCom.cs b/UI/Components/SpeedrunCom.cs index 2ebadf9..678fd53 100644 --- a/UI/Components/SpeedrunCom.cs +++ b/UI/Components/SpeedrunCom.cs @@ -94,7 +94,7 @@ public Uri GetGameCoverUri(string gameId, CoverResolution resolution = CoverReso private dynamic findCategory(IDictionary categories, string categoryName) { var categoryNameLower = (categoryName ?? "").Trim().ToLowerInvariant(); - return categories.Where(x => (x.Key ?? "").Trim().ToLowerInvariant() == categoryNameLower).First(); + return categories.Where(x => (x.Key ?? "").Trim().ToLowerInvariant() == categoryNameLower).First().Value; } private IEnumerable getGameList()