Fixed DataDirs, ConfigDirs

This commit is contained in:
Sasha Koshka 2024-04-28 18:30:25 -04:00
parent bc7b9c58a8
commit 5b9c1ed1ef
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ func listDefault (list string, defaul ...string) []string {
index := 0
for _, dir := range envDirs {
if Valid(dir) != nil {
if Valid(dir) == nil {
dirs[index] = dir
index ++
}