diff --git a/SteamKit2/SteamKit2/Types/KeyValue.cs b/SteamKit2/SteamKit2/Types/KeyValue.cs index 4cafda1f..69d9bddf 100644 --- a/SteamKit2/SteamKit2/Types/KeyValue.cs +++ b/SteamKit2/SteamKit2/Types/KeyValue.cs @@ -273,7 +273,7 @@ namespace SteamKit2 get { var child = this.Children - .SingleOrDefault( c => string.Equals( c.Name, key, StringComparison.OrdinalIgnoreCase ) ); + .FirstOrDefault( c => string.Equals( c.Name, key, StringComparison.OrdinalIgnoreCase ) ); if ( child == null ) {