#24: Filter out more Telltale variants that are too broad

This commit is contained in:
mtkennerly 2023-03-19 02:53:47 +08:00
parent 17c7d05a5d
commit 4d10900c3b
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
3 changed files with 3 additions and 6 deletions

View file

@ -357,9 +357,11 @@ export function pathIsTooBroad(path: string): boolean {
"<home>/Documents/My Games",
"<home>/Library/Application Support",
"<home>/Library/Preferences",
"<home>/Telltale Games",
"<root>/config",
"<winDir>/win.ini",
"<winDocuments>/My Games",
"<winDocuments>/Telltale Games",
].includes(path)) {
return true;
}