#24: Filter out Telltale Games unless the episode subfolder is specified
This commit is contained in:
parent
02a93a797c
commit
8084bfa7ee
2 changed files with 5 additions and 10 deletions
|
@ -364,6 +364,11 @@ export function pathIsTooBroad(path: string): boolean {
|
|||
return true;
|
||||
}
|
||||
|
||||
// Several games/episodes are grouped together here.
|
||||
if (path.startsWith("<winDocuments>/Telltale Games/*/")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Drive letters:
|
||||
if (path.match(/^[a-zA-Z]:$/)) {
|
||||
return true;
|
||||
|
|
Reference in a new issue