Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Fixed compatibility issue w/ Kodi Helix (14.x) #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion plugin.audio.subsonic/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.audio.subsonic" version="0.3.0" name="Subsonic" provider-name="t0mm0">
<requires>
<import addon="xbmc.python" version="1.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
Expand Down
2 changes: 1 addition & 1 deletion plugin.audio.subsonic/resources/lib/Subsonic/Addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def log(msg, err=False):
xbmc.log(addon.getAddonInfo('name') + ': ' + msg.encode('utf-8'),
xbmc.LOGERROR)
else:
xbmc.output(addon.getAddonInfo('name') + ': ' + msg.encode('utf-8'),
xbmc.log(addon.getAddonInfo('name') + ': ' + msg.encode('utf-8'),
xbmc.LOGDEBUG)

def show_error(details):
Expand Down