Merge pull request #194 from shunf4/fix/bad_tz_override

fix: correctly convert timezone offset from Java TimeZone.getRawOffset() to arg for golang time.FixedZone
This commit is contained in:
Larvan2 2024-03-28 15:03:02 +08:00 committed by GitHub
commit 436f8600d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ class TimeZoneModule(service: Service) : Module<Unit>(service) {
while (true) {
val timeZone = TimeZone.getDefault()
Clash.notifyTimeZoneChanged(timeZone.id, timeZone.rawOffset)
Clash.notifyTimeZoneChanged(timeZone.id, timeZone.rawOffset / 1000)
timeZones.receive()
}