Skip to content

Commit e0d768e

Browse files
authored
Feature/support for catchup (botallen#3)
* OS-001 fix featured catchup * OS-001 fix catchup from context menu
1 parent e283a41 commit e0d768e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/lib/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def show_epg(plugin, day, channel_id):
225225
"showtime": None if islive else each.get("showtime", "").replace(":", ""),
226226
"srno": None if islive else datetime.fromtimestamp(int(each.get("startEpoch", 0)*.001)).strftime('%Y%m%d'),
227227
"stream_type": None if islive else "Catchup",
228-
"programId": None if islive else each.get("srno", "").replace(":", ""),
228+
"programId": None if islive else each.get("srno", ""),
229229
"begin": None if islive else datetime.utcfromtimestamp(int(each.get("startEpoch", 0)*.001)).strftime('%Y%m%dT%H%M%S'),
230230
"end": None if islive else datetime.utcfromtimestamp(int(each.get("endEpoch", 0)*.001)).strftime('%Y%m%dT%H%M%S')
231231
}

0 commit comments

Comments
 (0)