mirror of
https://github.com/stashapp/stash.git
synced 2025-12-22 16:24:37 +01:00
Fix stash-box batch performer birthdate update (#2189)
This commit is contained in:
parent
0c0bdd4e21
commit
a2bfa9ee79
2 changed files with 2 additions and 1 deletions
|
|
@ -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}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue