diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs index 00931f380..e5098ab92 100644 --- a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs +++ b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs @@ -32,7 +32,7 @@ namespace Flow.Launcher.Core.Plugin internal abstract class JsonRPCPlugin : IAsyncPlugin, IContextMenu, ISettingProvider, ISavable { protected PluginInitContext Context; - public const string JsonRpc = "JsonRPC"; + public const string JsonRPC = "JsonRPC"; /// /// The language this JsonRPCPlugin support diff --git a/Flow.Launcher.Core/Plugin/PythonPlugin.cs b/Flow.Launcher.Core/Plugin/PythonPlugin.cs index 3c7b89f9a..0d97e36dd 100644 --- a/Flow.Launcher.Core/Plugin/PythonPlugin.cs +++ b/Flow.Launcher.Core/Plugin/PythonPlugin.cs @@ -25,7 +25,7 @@ namespace Flow.Launcher.Core.Plugin }; // temp fix for issue #667 - var path = Path.Combine(Constant.ProgramDirectory, JsonRpc); + var path = Path.Combine(Constant.ProgramDirectory, JsonRPC); _startInfo.EnvironmentVariables["PYTHONPATH"] = path; _startInfo.EnvironmentVariables["FLOW_VERSION"] = Constant.Version;