File tree Expand file tree Collapse file tree
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6464 <system : String x : Key =" plugin_explorer_Directory_Recursive_Search_Engine" >Directory Recursive Search Engine</system : String >
6565 <system : String x : Key =" plugin_explorer_Index_Search_Engine" >Index Search Engine</system : String >
6666 <system : String x : Key =" plugin_explorer_Open_Window_Index_Option" >Open Windows Index Option</system : String >
67- <system : String x : Key =" plugin_explorer_Excluded_File_Types" >Ignored File Types (comma seperated)</system : String >
67+ <system : String x : Key =" plugin_explorer_Excluded_File_Types" >Excluded File Types (comma seperated)</system : String >
6868 <system : String x : Key =" plugin_explorer_Excluded_File_Types_Tooltip" >For example: exe,jpg,png</system : String >
6969
7070 <!-- Plugin Infos -->
Original file line number Diff line number Diff line change @@ -518,7 +518,8 @@ public string ExcludedFileTypes
518518 get => Settings . ExcludedFileTypes ;
519519 set
520520 {
521- string sanitized = string . IsNullOrEmpty ( value ) ? value : value . Replace ( " " , "" ) . Replace ( "." , "" ) ;
521+ // remove spaces and dots from the string before saving
522+ string sanitized = string . IsNullOrEmpty ( value ) ? "" : value . Replace ( " " , "" ) . Replace ( "." , "" ) ;
522523 Settings . ExcludedFileTypes = sanitized ;
523524 OnPropertyChanged ( ) ;
524525 }
You can’t perform that action at this time.
0 commit comments