mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-29 11:32:53 +00:00
Fixes TypeInfoResolver Exception
This commit is contained in:
parent
a5735895c6
commit
5f5da59573
2 changed files with 4 additions and 4 deletions
|
|
@ -121,7 +121,7 @@ public class CoreConfigSingboxService
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -504,7 +504,7 @@ public class CoreConfigSingboxService
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ public class CoreConfigV2rayService
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -298,7 +298,7 @@ public class CoreConfigV2rayService
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue