Browse Source

Fix encoding issue

pull/293/head
双草酸酯 5 years ago committed by GitHub
parent
commit
45c74cfe59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      v2rayN/v2rayN/Handler/V2rayHandler.cs

1
v2rayN/v2rayN/Handler/V2rayHandler.cs

@ -150,6 +150,7 @@ namespace v2rayN.Handler
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.StandardOutputEncoding = Encoding.UTF8;
p.OutputDataReceived += new DataReceivedEventHandler((sender, e) =>
{
if (!String.IsNullOrEmpty(e.Data))

Loading…
Cancel
Save