mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix stash-box batch performer birthdate update (#2189)
This commit is contained in:
@@ -261,7 +261,7 @@ func getDate(val *string) models.SQLiteDate {
|
|||||||
if val == nil {
|
if val == nil {
|
||||||
return models.SQLiteDate{Valid: false}
|
return models.SQLiteDate{Valid: false}
|
||||||
} else {
|
} else {
|
||||||
return models.SQLiteDate{String: *val, Valid: false}
|
return models.SQLiteDate{String: *val, Valid: true}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
### 🐛 Bug fixes
|
### 🐛 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 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))
|
* Fix timezone issue with Created/Updated dates in scene/image/gallery details pages. ([#2190](https://github.com/stashapp/stash/pull/2190))
|
||||||
|
|||||||
Reference in New Issue
Block a user