Skip to content

Commit

Permalink
Merge pull request #381 from Rechi/fix/pvrDate
Browse files Browse the repository at this point in the history
fix pvr datetime parsing
  • Loading branch information
Rechi authored Nov 22, 2019
2 parents 0ab5c5c + 49b92ce commit 74bfe67
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 74bfe67

Please sign in to comment.