File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -393,15 +393,15 @@ private Result CreateAddToIndexSearchExclusionListResult(SearchResult record)
393
393
{
394
394
Title = Context . API . GetTranslation ( "plugin_explorer_excludefromindexsearch" ) ,
395
395
SubTitle = Context . API . GetTranslation ( "plugin_explorer_path" ) + " " + record . FullPath ,
396
- Action = _ =>
396
+ Action = c_ =>
397
397
{
398
398
if ( ! Settings . IndexSearchExcludedSubdirectoryPaths . Any ( x => string . Equals ( x . Path , record . FullPath , StringComparison . OrdinalIgnoreCase ) ) )
399
399
Settings . IndexSearchExcludedSubdirectoryPaths . Add ( new AccessLink
400
400
{
401
401
Path = record . FullPath
402
402
} ) ;
403
403
404
- Task . Run ( ( ) =>
404
+ _ = Task . Run ( ( ) =>
405
405
{
406
406
Context . API . ShowMsg ( Context . API . GetTranslation ( "plugin_explorer_excludedfromindexsearch_msg" ) ,
407
407
Context . API . GetTranslation ( "plugin_explorer_path" ) +
@@ -469,7 +469,7 @@ private Result CreateOpenWithMenu(SearchResult record)
469
469
470
470
private void LogException ( string message , Exception e )
471
471
{
472
- Context . API . LogException ( nameof ( Main ) , message , e ) ;
472
+ Context . API . LogException ( nameof ( ContextMenu ) , message , e ) ;
473
473
}
474
474
475
475
private static bool CanRunAsDifferentUser ( string path )
You can’t perform that action at this time.
0 commit comments