Skip to content

Commit

Permalink
Fix timezone formatting
Browse files Browse the repository at this point in the history
Caused issue with Emby, programs would not show up in guide
  • Loading branch information
tarkah committed Dec 11, 2019
1 parent 731696a commit 6b0cf3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/playlist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ async fn create_xmltv(
\n </programme>",
start_channel + id,
start.format("%Y%m%d"),
start.format("%:z"),
start.format("%z"),
stop.format("%Y%m%d"),
stop.format("%:z"),
stop.format("%z"),
title,
description,
icons,
Expand Down

0 comments on commit 6b0cf3a

Please sign in to comment.