Skip to content

Commit

Permalink
Merge pull request #556 from quickmic/next-gen-dev-python3
Browse files Browse the repository at this point in the history
11.1.10, review changelog for details
  • Loading branch information
quickmic authored Dec 16, 2024
2 parents fdb6611 + 5caa5a6 commit 6b35c84
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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="plugin.service.emby-next-gen" name="Emby for Kodi Next Gen" version="11.1.9" provider-name="quickmic">
<addon id="plugin.service.emby-next-gen" name="Emby for Kodi Next Gen" version="11.1.10" provider-name="quickmic">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.dateutil" version="2.8.1" />
Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
11.1.10
=============
fix photo nodes



11.1.9
=============
fix delete homevideos via dyanmic nodes
Expand Down
2 changes: 1 addition & 1 deletion core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def set_path_filename(Item, ServerId, MediaSource, isDynamic=False):
if Item['Type'] in ('Photo', 'PhotoAlbum'):
if 'Primary' in Item['ImageTags']:
if 'Path' in Item:
Item['KodiFullPath'] = f"http://127.0.0.1:57342/picture/{ServerId}/p-{Item['Id']}-0-p-{Item['ImageTags']['Primary']}--{utils.get_Filename(Item['Path'], False)}|redirect-limit=1000"
Item['KodiFullPath'] = f"http://127.0.0.1:57342/picture/{ServerId}/p-{Item['Id']}-0-p-{Item['ImageTags']['Primary']}--{quote(utils.get_Filename(Item['Path'], ''))}|redirect-limit=1000"
return

Item['KodiFullPath'] = f"http://127.0.0.1:57342/picture/{ServerId}/p-{Item['Id']}-0-p-{Item['ImageTags']['Primary']}|redirect-limit=1000"
Expand Down

0 comments on commit 6b35c84

Please sign in to comment.