Convert rule domain newLine to comma

This commit is contained in:
2dust 2023-04-27 10:21:06 +08:00
parent 6b6169e248
commit 75742d8a9e

View file

@ -64,6 +64,9 @@ namespace v2rayN.ViewModels
private void SaveRules()
{
Domain = Domain.Replace(Environment.NewLine, ",");
IP = IP.Replace(Environment.NewLine, ",");
if (AutoSort)
{
SelectedSource.domain = Utils.String2ListSorted(Domain);