Skip to content

Commit

Permalink
fix: Remove not work
Browse files Browse the repository at this point in the history
  • Loading branch information
clansty committed Nov 29, 2024
1 parent 994f3fd commit 017b05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AquaMai/AquaMai.Config/ConfigView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public bool Remove(string path)
var keysCaseSensitive = current.Keys.Where(k => string.Equals(k, keyToRemove, StringComparison.OrdinalIgnoreCase));
foreach (var key in keysCaseSensitive)
{
current.Keys.Remove(key);
current.Entries.Remove(key);
}
return keysCaseSensitive.Any();
}
Expand Down

0 comments on commit 017b05e

Please sign in to comment.