From a2bfa9ee79abb56b15b836d168116d2e81c2fe98 Mon Sep 17 00:00:00 2001 From: InfiniteTF Date: Tue, 4 Jan 2022 02:15:38 +0100 Subject: [PATCH] Fix stash-box batch performer birthdate update (#2189) --- pkg/manager/task_stash_box_tag.go | 2 +- ui/v2.5/src/components/Changelog/versions/v0130.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/manager/task_stash_box_tag.go b/pkg/manager/task_stash_box_tag.go index dbfa28073..99fdbd7a1 100644 --- a/pkg/manager/task_stash_box_tag.go +++ b/pkg/manager/task_stash_box_tag.go @@ -261,7 +261,7 @@ func getDate(val *string) models.SQLiteDate { if val == nil { return models.SQLiteDate{Valid: false} } else { - return models.SQLiteDate{String: *val, Valid: false} + return models.SQLiteDate{String: *val, Valid: true} } } diff --git a/ui/v2.5/src/components/Changelog/versions/v0130.md b/ui/v2.5/src/components/Changelog/versions/v0130.md index 33d05489d..7039315fb 100644 --- a/ui/v2.5/src/components/Changelog/versions/v0130.md +++ b/ui/v2.5/src/components/Changelog/versions/v0130.md @@ -1,3 +1,4 @@ ### 🐛 Bug fixes +* Fix stash-box batch performer task not setting birthdate. ([#2189](https://github.com/stashapp/stash/pull/2189)) * Fix error when scanning symlinks. ([#2196](https://github.com/stashapp/stash/issues/2196)) * Fix timezone issue with Created/Updated dates in scene/image/gallery details pages. ([#2190](https://github.com/stashapp/stash/pull/2190))