Filter out generic 'SavesDir' folder

This commit is contained in:
mtkennerly 2024-04-22 12:17:25 -04:00
parent ff74c3f565
commit 3b70d5eaa5
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
3 changed files with 4 additions and 35 deletions

View file

@ -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;
}