Skip to content

Commit

Permalink
v1.0.6 update (#4441)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbinkley60 authored Jan 1, 2024
1 parent 3381b28 commit 2ab26cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin.video.cbc-sports/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.cbc-sports" name="CBC Sports" version="1.0.5" provider-name="Jbinkley60">
<addon id="plugin.video.cbc-sports" name="CBC Sports" version="1.0.6" provider-name="Jbinkley60">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
Expand Down
4 changes: 4 additions & 0 deletions plugin.video.cbc-sports/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.0.6

- Fixed a bug where an invalid hour of 24 wasn't being caught

Version 1.0.5

- Added a generic check for all improperly formatted times being returned by the CBC
Expand Down
2 changes: 1 addition & 1 deletion plugin.video.cbc-sports/resources/lib/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def timeConvert(orgtime): # Verify CBC Sports time format
else:
retime = 'invalid'

if int(orgtime[11:13]) > 24:
if int(orgtime[11:13]) > 23:
retime = 'invalid'

return(retime)
Expand Down

0 comments on commit 2ab26cf

Please sign in to comment.