mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-29 03:22:52 +00:00
Fixes TypeInfoResolver Exception
This commit is contained in:
parent
6349553fe0
commit
ff1df89038
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
|
||||
|
|
@ -504,7 +504,7 @@ public class CoreConfigSingboxService
|
|||
}
|
||||
}
|
||||
}
|
||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
||||
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ public class CoreConfigV2rayService
|
|||
}
|
||||
}
|
||||
}
|
||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
||||
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
@ -298,7 +298,7 @@ public class CoreConfigV2rayService
|
|||
}
|
||||
}
|
||||
}
|
||||
ret.Data = customConfigNode.ToJsonString(new() { WriteIndented = true });
|
||||
ret.Data = JsonUtils.Serialize(customConfigNode);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue