Skip to content

Commit

Permalink
Fix to consider user config
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Sep 28, 2023
1 parent dbaa85c commit a010f71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/file-manager/file-manager-lib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ sub get_user_config

sub get_user_config_showhiddenfiles
{
return get_user_config('config_portable_module_filemanager_show_dot_files') ne 'false';
return $userconfig{'config_portable_module_filemanager_show_dot_files'} ne 'false' &&
get_user_config('config_portable_module_filemanager_show_dot_files') ne 'false';
}

sub kill_previous
Expand Down

0 comments on commit a010f71

Please sign in to comment.