We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a53760b commit 2e87f14Copy full SHA for 2e87f14
Flow.Launcher.Core/Plugin/ExecutablePlugin.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Diagnostics;
3
using System.IO;
4
using System.Threading;
@@ -26,7 +26,7 @@ public ExecutablePlugin(string filename)
26
27
protected override Task<Stream> RequestAsync(JsonRPCRequestModel request, CancellationToken token = default)
28
{
29
- _startInfo.Arguments = $"\"{request}\"";
+ _startInfo.Arguments = $"'{request}'";
30
return ExecuteAsync(_startInfo, token);
31
}
32
0 commit comments