Fix stash-box batch performer birthdate update (#2189)

This commit is contained in:
InfiniteTF
2022-01-04 02:15:38 +01:00
committed by GitHub
parent 0c0bdd4e21
commit a2bfa9ee79
2 changed files with 2 additions and 1 deletions

View File

@@ -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}
}
}

View File

@@ -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))