Filter out generic 'SavesDir' folder
This commit is contained in:
parent
ff74c3f565
commit
3b70d5eaa5
3 changed files with 4 additions and 35 deletions
|
@ -98,6 +98,7 @@ fn too_broad(path: &str) -> bool {
|
|||
if path == item
|
||||
|| path.starts_with(&format!("{item}/*"))
|
||||
|| path.starts_with(&format!("{item}/{STORE_USER_ID}"))
|
||||
|| path.starts_with(&format!("{item}/SavesDir"))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
Reference in a new issue