aboutsummaryrefslogtreecommitdiff
path: root/persistence
diff options
context:
space:
mode:
Diffstat (limited to 'persistence')
-rw-r--r--persistence/sessions.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/persistence/sessions.go b/persistence/sessions.go
index efb32d3..66857f1 100644
--- a/persistence/sessions.go
+++ b/persistence/sessions.go
@@ -120,6 +120,7 @@ func (s *Session) Set(key string, value string) (string, error) {
return "", errors.New("Unknown session property")
}
+// TimezoneToLocation tries to convert config timezone to location
func (s *Session) TimezoneToLocation() *time.Location {
time, err := time.Parse("-07:00", s.Timezone)
if err == nil {