We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90f582f commit 5902bb2Copy full SHA for 5902bb2
1 file changed
src/Configuration/EssConfig.cs
@@ -180,18 +180,6 @@ public override void Load(string filePath) {
180
try {
181
var json = JObject.Parse(File.ReadAllText(filePath));
182
183
- if (json["AutoAnnouncer"]["Interval"] == null) {
184
- var old = json["AutoAnnouncer"]
185
- .Children<JProperty>()
186
- .FirstOrDefault(n => n.Name.Equals("MessageInterval"));
187
-
188
- if (old != null) {
189
- json["AutoAnnouncer"]["Interval"] = old.Value;
190
- old.Remove();
191
- }
192
- File.WriteAllText(filePath, json.ToString());
193
194
195
base.Load(filePath);
196
197
/*
0 commit comments