Skip to content

Commit

Permalink
slyguy.samsung.tv.plus -> v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
matthuisman authored and johnny5-is-alive committed Apr 11, 2024
1 parent 215492a commit c2d7364
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slyguy.samsung.tv.plus/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="slyguy.samsung.tv.plus" name="Samsung TV Plus" provider-name="SlyGuy" version="0.1.12">
<addon id="slyguy.samsung.tv.plus" name="Samsung TV Plus" provider-name="SlyGuy" version="0.1.13">
<requires>
<import addon="script.module.slyguy" version="0.63.1"/>
</requires>
Expand All @@ -12,7 +12,7 @@
<license></license>
<language></language>
<website></website>
<news>Move EPG url into Playlist</news>
<news>Hide Widevine channels</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
Expand Down
4 changes: 4 additions & 0 deletions slyguy.samsung.tv.plus/resources/lib/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ def _process_channels(channels, group=ALL, region=ALL):
if group != ALL and channel['group'] != group:
continue

# currently dont work :( as license server refuses
if channel.get('license_url'):
continue

plot = u'[B]{} - {}[/B]\n'.format(channel['region'], channel['group'])
if not epg_count:
plot += channel.get('description', '')
Expand Down

0 comments on commit c2d7364

Please sign in to comment.