mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Add option to filename parser to skip organized scenes (#1665)
Fixes #1219
This commit is contained in:
@@ -24,6 +24,7 @@ const initialParserInput = {
|
||||
page: 1,
|
||||
pageSize: 20,
|
||||
findClicked: false,
|
||||
ignoreOrganized: true,
|
||||
};
|
||||
|
||||
const initialShowFieldsState = new Map<string, boolean>([
|
||||
@@ -127,6 +128,7 @@ export const SceneFilenameParser: React.FC = () => {
|
||||
ignoreWords: parserInput.ignoreWords,
|
||||
whitespaceCharacters: parserInput.whitespaceCharacters,
|
||||
capitalizeTitle: parserInput.capitalizeTitle,
|
||||
ignoreOrganized: parserInput.ignoreOrganized,
|
||||
};
|
||||
|
||||
queryParseSceneFilenames(parserFilter, parserInputData)
|
||||
|
||||
Reference in New Issue
Block a user