[FL-2682] Allow spaces in file names #1444
This commit is contained in:
parent
7c49f604f9
commit
c22d66590e
@ -102,7 +102,7 @@ bool path_contains_only_ascii(const char* path) {
|
||||
} else if((*name_pos >= 'a') && (*name_pos <= 'z')) {
|
||||
name_pos++;
|
||||
continue;
|
||||
} else if(strchr(".!#\\$%&'()-@^_`{}~", *name_pos) != NULL) {
|
||||
} else if(strchr(" .!#\\$%&'()-@^_`{}~", *name_pos) != NULL) {
|
||||
name_pos++;
|
||||
continue;
|
||||
}
|
||||
@ -111,4 +111,4 @@ bool path_contains_only_ascii(const char* path) {
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user