From db302b15eae3693dab792c811029d237556831af Mon Sep 17 00:00:00 2001 From: Simon Frei Date: Mon, 9 Aug 2021 09:27:14 +0200 Subject: lib/syncthing: Set system timezone on android (#7878) --- lib/syncthing/time_android.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lib/syncthing/time_android.go diff --git a/lib/syncthing/time_android.go b/lib/syncthing/time_android.go new file mode 100644 index 0000000000..a5da6b699e --- /dev/null +++ b/lib/syncthing/time_android.go @@ -0,0 +1,26 @@ +// Copyright (C) 2021 The Syncthing Authors. +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this file, +// You can obtain one at https://mozilla.org/MPL/2.0/. + +package syncthing + +import ( + "os/exec" + "strings" + "time" +) + +// https://github.com/golang/go/issues/20455#issuecomment-342287698 +func init() { + out, err := exec.Command("/system/bin/getprop", "persist.sys.timezone").Output() + if err != nil { + return + } + z, err := time.LoadLocation(strings.TrimSpace(string(out))) + if err != nil { + return + } + time.Local = z +} -- cgit v1.2.3