From f63b1b013a60612f6cd6d968b700e078075f7275 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Tue, 22 Mar 2022 14:19:27 +1100 Subject: [PATCH 1/2] Don't include stash_ids if not setting --- ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx b/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx index f78b80ae7f0..a4765ecd191 100755 --- a/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx +++ b/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx @@ -339,6 +339,9 @@ const StashSearchResult: React.FC = ({ stash_id: scene.remote_site_id, }, ]; + } else { + // #2348 - don't include stash_ids if we're not setting them + delete sceneCreateInput.stash_ids; } await saveScene(sceneCreateInput, includeStashID); From 4aa339123ffe9cb40d620c10195cf0e9ae99de54 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 23 Mar 2022 08:15:08 +1100 Subject: [PATCH 2/2] Add changelog entry [skip ci] --- ui/v2.5/src/components/Changelog/versions/v0140.md | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/v2.5/src/components/Changelog/versions/v0140.md b/ui/v2.5/src/components/Changelog/versions/v0140.md index 81c9b4a264f..e9b64276c57 100644 --- a/ui/v2.5/src/components/Changelog/versions/v0140.md +++ b/ui/v2.5/src/components/Changelog/versions/v0140.md @@ -4,6 +4,7 @@ * Improved autotag performance. ([#2368](https://github.com/stashapp/stash/pull/2368)) ### 🐛 Bug fixes +* Fix error saving a scene from the tagger when the scene has stash ids. ([#2408](https://github.com/stashapp/stash/pull/2408)) * Perform tag pattern exclusion on stash-box sources. ([#2391](https://github.com/stashapp/stash/pull/2391)) * Don't generate jpg thumbnails for animated webp files. ([#2388](https://github.com/stashapp/stash/pull/2388)) * Removed warnings and incorrect error message in json scrapers. ([#2375](https://github.com/stashapp/stash/pull/2375))