Compare commits

..

No commits in common. "a3b419214acda46c480f336a6dd4af9bfa569c26" and "fd1a1eb8c2d0550f5469089582f126bd2e4497be" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View file

@ -12,8 +12,6 @@ services:
ports: ports:
- "3000:3000" - "3000:3000"
restart: unless-stopped 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. As you can see, you only have to forward port 3000 to wherever you like, in this case port 3000.

View file

@ -132,7 +132,7 @@ fn convert_time(dt: icalendar::DatePerhapsTime) -> Result<chrono::DateTime<chron
let cdt = match cdt { let cdt = match cdt {
icalendar::CalendarDateTime::WithTimezone{date_time, tzid} => { icalendar::CalendarDateTime::WithTimezone{date_time, tzid} => {
icalendar::CalendarDateTime::WithTimezone{date_time, tzid: String::from(match tzid.as_str() { icalendar::CalendarDateTime::WithTimezone{date_time, tzid: String::from(match tzid.as_str() {
"W. Europe Standard Time" => "Europe/Berlin", "W. Europe Standard Time" => "Europe/London",
_ => &tzid _ => &tzid
})} })}
}, },