This commit is contained in:
bodqhrohro 2019-12-12 02:24:35 +02:00
parent 74a872a30b
commit 0274f47433

View file

@ -120,6 +120,7 @@ func (s *Session) Set(key string, value string) (string, error) {
return "", errors.New("Unknown session property") return "", errors.New("Unknown session property")
} }
// TimezoneToLocation tries to convert config timezone to location
func (s *Session) TimezoneToLocation() *time.Location { func (s *Session) TimezoneToLocation() *time.Location {
time, err := time.Parse("-07:00", s.Timezone) time, err := time.Parse("-07:00", s.Timezone)
if err == nil { if err == nil {