diff --git a/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs b/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs index 21b16c899..50bdf6df9 100644 --- a/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs +++ b/Flow.Launcher.Core/ExternalPlugins/Environments/AbstractPluginEnvironment.cs @@ -162,7 +162,7 @@ namespace Flow.Launcher.Core.ExternalPlugins.Environments /// need to update each plugin's executable path so user will not be prompted again to reinstall the environments. /// /// - public static void PreStartPluginFilePathCorrection(Settings settings) + public static void PreStartPluginExecutablePathUpdate(Settings settings) { if (DataLocation.PortableDataLocationInUse()) { diff --git a/Flow.Launcher/App.xaml.cs b/Flow.Launcher/App.xaml.cs index dee023599..0857fb55b 100644 --- a/Flow.Launcher/App.xaml.cs +++ b/Flow.Launcher/App.xaml.cs @@ -62,7 +62,7 @@ namespace Flow.Launcher _settingsVM = new SettingWindowViewModel(_updater, _portable); _settings = _settingsVM.Settings; - AbstractPluginEnvironment.PreStartPluginFilePathCorrection(_settings); + AbstractPluginEnvironment.PreStartPluginExecutablePathUpdate(_settings); _alphabet.Initialize(_settings); _stringMatcher = new StringMatcher(_alphabet);