From 83a61109d772ac3766e7a6c9d179a4b7bdb14386 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Mon, 3 Jul 2023 12:23:30 +0800 Subject: [PATCH] fix error stream issue --- Flow.Launcher.Core/Plugin/PythonPluginV2.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Flow.Launcher.Core/Plugin/PythonPluginV2.cs b/Flow.Launcher.Core/Plugin/PythonPluginV2.cs index 7b8ea7c76..83dce2187 100644 --- a/Flow.Launcher.Core/Plugin/PythonPluginV2.cs +++ b/Flow.Launcher.Core/Plugin/PythonPluginV2.cs @@ -93,6 +93,8 @@ namespace Flow.Launcher.Core.Plugin process.StandardOutput.BaseStream, formatter); + ErrorStream = _process.StandardError; + RPC = new JsonRpc(handler, new JsonRPCPublicAPI(api)); RPC.SynchronizationContext = null; RPC.StartListening();