diff --git a/data/manifest.yaml b/data/manifest.yaml index c323c571..b285789a 100644 --- a/data/manifest.yaml +++ b/data/manifest.yaml @@ -74423,10 +74423,6 @@ Blade of Acrimony: id: 932450 Blade of Arena: files: - "//BOAWorld/Saved/SaveGames/*.sav": - when: - - os: windows - store: steam "/BOAWorld/Saved/SaveGames/*.sav": when: - os: windows @@ -325604,11 +325600,6 @@ Kandagawa Jet Girls: - save when: - os: windows - "//28000": - tags: - - save - when: - - os: windows gog: id: 2057392130 id: @@ -670275,12 +670266,6 @@ Victoria 3: - save when: - os: linux - "//529340/remote/save games": - tags: - - save - when: - - os: windows - store: steam "/Paradox Interactive/Victoria 3": tags: - config diff --git a/src/path.rs b/src/path.rs index 8dd3d350..f16eca9d 100644 --- a/src/path.rs +++ b/src/path.rs @@ -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; } }