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
|
||||
Blade of Arena:
|
||||
files:
|
||||
"<winLocalAppData>/<storeUserId>/BOAWorld/Saved/SaveGames/*.sav":
|
||||
when:
|
||||
- os: windows
|
||||
store: steam
|
||||
"<winLocalAppData>/BOAWorld/Saved/SaveGames/*.sav":
|
||||
when:
|
||||
- os: windows
|
||||
|
@ -325604,11 +325600,6 @@ Kandagawa Jet Girls:
|
|||
- save
|
||||
when:
|
||||
- os: windows
|
||||
"<winLocalAppData>/<storeUserId>/28000":
|
||||
tags:
|
||||
- save
|
||||
when:
|
||||
- os: windows
|
||||
gog:
|
||||
id: 2057392130
|
||||
id:
|
||||
|
@ -670275,12 +670266,6 @@ Victoria 3:
|
|||
- save
|
||||
when:
|
||||
- os: linux
|
||||
"<root>/<storeUserId>/529340/remote/save games":
|
||||
tags:
|
||||
- save
|
||||
when:
|
||||
- os: windows
|
||||
store: steam
|
||||
"<winDocuments>/Paradox Interactive/Victoria 3":
|
||||
tags:
|
||||
- config
|
||||
|
|
|
@ -60,7 +60,7 @@ fn too_broad(path: &str) -> bool {
|
|||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue