conf editor bug fix

This commit is contained in:
stax76
2023-10-25 09:35:36 +02:00
parent 0148a71281
commit 37320fb975
5 changed files with 29 additions and 29 deletions

View File

@@ -82,7 +82,7 @@ public class ConfParser
{
public static List<ConfSection> Parse(string content)
{
string[] lines = content.Split(BR.ToCharArray(), StringSplitOptions.None);
string[] lines = content.Split(new[] { "\r\n" }, StringSplitOptions.None);
var sections = new List<ConfSection>();
ConfSection? currentGroup = null;