mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-05 05:47:36 +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) {
|
fun setDate(year: Int, month: Int, day: Int) {
|
||||||
mInstant = DateTime(mInstant)
|
mInstant = DateTime(mInstant, DateTimeZone.getDefault())
|
||||||
.withYear(year)
|
.withYear(year)
|
||||||
.withMonthOfYear(month)
|
.withMonthOfYear(month)
|
||||||
.withDayOfMonth(day)
|
.withDayOfMonth(day)
|
||||||
|
@ -131,7 +131,7 @@ class DateInstant : Parcelable {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun setTime(hour: Int, minute: Int) {
|
fun setTime(hour: Int, minute: Int) {
|
||||||
mInstant = DateTime(mInstant)
|
mInstant = DateTime(mInstant, DateTimeZone.getDefault())
|
||||||
.withHourOfDay(hour)
|
.withHourOfDay(hour)
|
||||||
.withMinuteOfHour(minute)
|
.withMinuteOfHour(minute)
|
||||||
.toInstant()
|
.toInstant()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue