Skip to content

Commit

Permalink
fix pvr datetime parsing
Browse files Browse the repository at this point in the history
fixes #306
  • Loading branch information
Rechi committed Nov 21, 2019
1 parent 0ab5c5c commit 49b92ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/helpers/global.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ helpers.global.dateStringToObj = (datetime) ->
new Date 0 # Will equal start of epoch?
else
## This will add the offset which should make the time correct as the EPG date time is UTC
new Date(datetime.replace(" ","t"))
new Date(datetime.replace(" ","T"))

## format a nowplaying time object for display
helpers.global.formatTime = (time) ->
Expand Down

0 comments on commit 49b92ce

Please sign in to comment.