mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 21:37:37 +03:00
fix: TimeZone
This commit is contained in:
parent
55206b3dde
commit
6de14a3840
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ class DateInstant : Parcelable {
|
|||
}
|
||||
|
||||
fun setDate(year: Int, month: Int, day: Int) {
|
||||
mInstant = DateTime(mInstant)
|
||||
mInstant = DateTime(mInstant, DateTimeZone.getDefault())
|
||||
.withYear(year)
|
||||
.withMonthOfYear(month)
|
||||
.withDayOfMonth(day)
|
||||
|
@ -131,7 +131,7 @@ class DateInstant : Parcelable {
|
|||
}
|
||||
|
||||
fun setTime(hour: Int, minute: Int) {
|
||||
mInstant = DateTime(mInstant)
|
||||
mInstant = DateTime(mInstant, DateTimeZone.getDefault())
|
||||
.withHourOfDay(hour)
|
||||
.withMinuteOfHour(minute)
|
||||
.toInstant()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue