Filter out some more wildcard paths
This commit is contained in:
parent
6bf79b1fec
commit
e097ad230c
2 changed files with 1 additions and 16 deletions
|
@ -74423,10 +74423,6 @@ Blade of Acrimony:
|
||||||
id: 932450
|
id: 932450
|
||||||
Blade of Arena:
|
Blade of Arena:
|
||||||
files:
|
files:
|
||||||
"<winLocalAppData>/<storeUserId>/BOAWorld/Saved/SaveGames/*.sav":
|
|
||||||
when:
|
|
||||||
- os: windows
|
|
||||||
store: steam
|
|
||||||
"<winLocalAppData>/BOAWorld/Saved/SaveGames/*.sav":
|
"<winLocalAppData>/BOAWorld/Saved/SaveGames/*.sav":
|
||||||
when:
|
when:
|
||||||
- os: windows
|
- os: windows
|
||||||
|
@ -325604,11 +325600,6 @@ Kandagawa Jet Girls:
|
||||||
- save
|
- save
|
||||||
when:
|
when:
|
||||||
- os: windows
|
- os: windows
|
||||||
"<winLocalAppData>/<storeUserId>/28000":
|
|
||||||
tags:
|
|
||||||
- save
|
|
||||||
when:
|
|
||||||
- os: windows
|
|
||||||
gog:
|
gog:
|
||||||
id: 2057392130
|
id: 2057392130
|
||||||
id:
|
id:
|
||||||
|
@ -670275,12 +670266,6 @@ Victoria 3:
|
||||||
- save
|
- save
|
||||||
when:
|
when:
|
||||||
- os: linux
|
- os: linux
|
||||||
"<root>/<storeUserId>/529340/remote/save games":
|
|
||||||
tags:
|
|
||||||
- save
|
|
||||||
when:
|
|
||||||
- os: windows
|
|
||||||
store: steam
|
|
||||||
"<winDocuments>/Paradox Interactive/Victoria 3":
|
"<winDocuments>/Paradox Interactive/Victoria 3":
|
||||||
tags:
|
tags:
|
||||||
- config
|
- config
|
||||||
|
|
|
@ -60,7 +60,7 @@ fn too_broad(path: &str) -> bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
for item in placeholder::AVOID_WILDCARDS {
|
for item in placeholder::AVOID_WILDCARDS {
|
||||||
if path.starts_with(&format!("{item}/*")) {
|
if path.starts_with(&format!("{item}/*")) || path.starts_with(&format!("{item}/{STORE_USER_ID}")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue