Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version #111

Merged
merged 2 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.iptv.manager" name="IPTV Manager" version="0.2.3" provider-name="Michaël Arnauts">
<addon id="service.iptv.manager" name="IPTV Manager" version="0.2.4+matrix.1" provider-name="Michaël Arnauts">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.dateutil" version="2.6.0"/>
<import addon="pvr.iptvsimple" version="3.8.8"/>
</requires>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/modules/iptvsimple.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def restart(cls, force=False):
if not force and (kodiutils.get_cond_visibility('Pvr.IsPlayingTv') or kodiutils.get_cond_visibility('Pvr.IsPlayingRadio')):
# Don't restart when we are Playing TV or Radio
cls.restart_required = True
_LOGGER.debug('Postponing restart of Simple IPTV since it is currently in use.')
_LOGGER.info('Postponing restart of Simple IPTV since it is currently in use.')
return

cls.restart_required = False
Expand Down
Loading