Skip to content

Commit

Permalink
script.module.slyguy -> v0.77.9
Browse files Browse the repository at this point in the history
  • Loading branch information
matthuisman authored and johnny5-is-alive committed Apr 2, 2024
1 parent 1a07ad1 commit 9449227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script.module.slyguy/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="script.module.slyguy" name="SlyGuy Common" provider-name="SlyGuy" version="0.77.8">
<addon id="script.module.slyguy" name="SlyGuy Common" provider-name="SlyGuy" version="0.77.9">
<requires>
<import addon="slyguy.dependencies" version="0.0.8"/>
<import addon="repository.slyguy" version="0.0.4"/>
Expand Down
2 changes: 1 addition & 1 deletion script.module.slyguy/resources/modules/slyguy/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ def replace_kids(cenc, kids, version0=False):
uuid, version, old_data, old_kids = parse_cenc_init(cenc)

old_data = binascii.hexlify(old_data).decode('utf8')
if '1210' in old_data:
if '1210' in old_data and old_kids:
pre_data = re.search('^([0-9a-z]*?)1210', old_data)
pre_data = pre_data.group(1) if pre_data else ''

Expand Down

0 comments on commit 9449227

Please sign in to comment.