File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Flow.Launcher.Core/Plugin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ private static void UpdatePluginDirectory(List<PluginMetadata> metadatas)
189
189
{
190
190
if ( string . IsNullOrEmpty ( metadata . AssemblyName ) )
191
191
{
192
- continue ; // Skip if AssemblyName is not set, which can happen for errornous plugins
192
+ continue ; // Skip if AssemblyName is not set, which can happen for erroneous plugins
193
193
}
194
194
metadata . PluginSettingsDirectoryPath = Path . Combine ( DataLocation . PluginSettingsDirectory , metadata . AssemblyName ) ;
195
195
metadata . PluginCacheDirectoryPath = Path . Combine ( DataLocation . PluginCacheDirectory , metadata . AssemblyName ) ;
@@ -198,7 +198,7 @@ private static void UpdatePluginDirectory(List<PluginMetadata> metadatas)
198
198
{
199
199
if ( string . IsNullOrEmpty ( metadata . Name ) )
200
200
{
201
- continue ; // Skip if Name is not set, which can happen for errornous plugins
201
+ continue ; // Skip if Name is not set, which can happen for erroneous plugins
202
202
}
203
203
metadata . PluginSettingsDirectoryPath = Path . Combine ( DataLocation . PluginSettingsDirectory , metadata . Name ) ;
204
204
metadata . PluginCacheDirectoryPath = Path . Combine ( DataLocation . PluginCacheDirectory , metadata . Name ) ;
You can’t perform that action at this time.
0 commit comments