From 67a0f71f80cdf98a669c9daa543b3126fcec1a17 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Wed, 17 Jan 2024 12:01:01 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8e29bae..d1beece 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ services: ports: - "3000:3000" restart: unless-stopped + environment: + TZ: Europe/Berlin # your timezone! ``` As you can see, you only have to forward port 3000 to wherever you like, in this case port 3000. From a3b419214acda46c480f336a6dd4af9bfa569c26 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Wed, 17 Jan 2024 12:35:40 +0100 Subject: [PATCH 2/2] Update main.rs --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3a266ba..2c28f4d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -132,7 +132,7 @@ fn convert_time(dt: icalendar::DatePerhapsTime) -> Result { icalendar::CalendarDateTime::WithTimezone{date_time, tzid: String::from(match tzid.as_str() { - "W. Europe Standard Time" => "Europe/London", + "W. Europe Standard Time" => "Europe/Berlin", _ => &tzid })} },