Skip to content

Commit

Permalink
Bugfix for green dot
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelarnauts committed Jun 2, 2020
1 parent fab5bcc commit c90798b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/modules/iptvsimple.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def write_epg(cls, epg):
title = item.get('title')

# Add an icon ourselves in Kodi 18
if title and item.get('stream', True) and kodiutils.kodi_version_major() < 19:
if title and item.get('stream') and kodiutils.kodi_version_major() < 19:
# Add [CR] to fix a bug that causes the [/B] to be visible
title = title + ' [COLOR green][B]•[/B][/COLOR][CR]'

Expand Down

0 comments on commit c90798b

Please sign in to comment.