mirror of
https://github.com/stashapp/stash.git
synced 2026-04-21 14:34:16 +02:00
Don't unset organized if tagger flag is false (#4213)
This commit is contained in:
parent
789de2d5f6
commit
5e0f27bed2
1 changed files with 2 additions and 1 deletions
|
|
@ -463,7 +463,8 @@ export const TaggerContext: React.FC = ({ children }) => {
|
|||
variables: {
|
||||
input: {
|
||||
...sceneCreateInput,
|
||||
organized: config?.markSceneAsOrganizedOnSave,
|
||||
// only set organized if it is enabled in the config
|
||||
organized: config?.markSceneAsOrganizedOnSave || undefined,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue