From 6dbb6a33271ea8acffed27c3b2682a0e78a32201 Mon Sep 17 00:00:00 2001 From: Lachee Date: Wed, 26 Jul 2023 14:52:13 +1000 Subject: [PATCH] Removed bad configuration. My rational has changed here. I do believe that this is safe to do since nobody really should be bothering the environment. I have it there just for sake of transparency. --- DiscordRPC/Configuration.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/DiscordRPC/Configuration.cs b/DiscordRPC/Configuration.cs index 5508c342..5babe356 100644 --- a/DiscordRPC/Configuration.cs +++ b/DiscordRPC/Configuration.cs @@ -28,12 +28,5 @@ public class Configuration /// [JsonProperty("environment")] public string Environment { get; set; } - - /// - /// Obsolete: Use "environment" instead. The type of environment the connection on. Usually Production. - /// - [JsonProperty("enviroment")] - [Obsolete("This property is obsolete: use \"environment\" instead", false)] - public string Enviroment { get; set; } } }