From 4c838daa120ba86d7965c942f3e5e3e518beca78 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Sat, 26 Jun 2021 14:25:01 +1000 Subject: [PATCH] Add sprite to SceneData fragment (#1533) * Add sprite to SceneData fragment Necessary so that TypePolicies object is populated correctly. --- graphql/documents/data/scene.graphql | 1 + ui/v2.5/src/components/Changelog/versions/v080.md | 1 + 2 files changed, 2 insertions(+) diff --git a/graphql/documents/data/scene.graphql b/graphql/documents/data/scene.graphql index 9d3299aa9..fd738ecf8 100644 --- a/graphql/documents/data/scene.graphql +++ b/graphql/documents/data/scene.graphql @@ -31,6 +31,7 @@ fragment SceneData on Scene { webp vtt chapters_vtt + sprite funscript } diff --git a/ui/v2.5/src/components/Changelog/versions/v080.md b/ui/v2.5/src/components/Changelog/versions/v080.md index 23c2f37e0..5ec68226d 100644 --- a/ui/v2.5/src/components/Changelog/versions/v080.md +++ b/ui/v2.5/src/components/Changelog/versions/v080.md @@ -27,6 +27,7 @@ * Add button to remove studio stash ID. ([#1378](https://github.com/stashapp/stash/pull/1378)) ### 🐛 Bug fixes +* Fix scene query not being cached correctly when navigating using back. ([#1533](https://github.com/stashapp/stash/pull/1533)) * Fix query with multiple table joins causing invalid query SQL. ([#1510](https://github.com/stashapp/stash/pull/1510)) * Fix file move detection when case of filename is changed on case-insensitive file systems. ([#1426](https://github.com/stashapp/stash/issues/1426)) * Fix auto-tagger not tagging scenes with no whitespace in name. ([#1488](https://github.com/stashapp/stash/pull/1488))