Skip to content

Commit

Permalink
Updated for release v1.2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jbinkley60 authored Jun 14, 2024
1 parent cdb2649 commit 3ab130d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.2.0.6 6/14/2024

- Removed Mezzmo Unknown Actor entry, when a video entry does not have any actors,
from syncing to the Kodi database.

1.2.0.5 5/13/2024

- Added new setting to select folder / playlist backdrop source or None. Previously
Expand Down
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.video.mezzmo" name="Mezzmo" version="1.2.0.5" provider-name="Conceiva">
<addon id="plugin.video.mezzmo" name="Mezzmo" version="1.2.0.6" provider-name="Conceiva">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ def writeEpisodeToDb(fileId, mtitle, mplot, mtagline, mwriter, mdirector, maired

def writeActorsToDb(actors, movieId, imageSearchUrl, mtitle, db, fileId, mnativeact, mshowId):

if len(actors) > 2:
if len(actors) > 2 and 'Unknown Artist' not in actors:
actorlist = actors.replace(', Jr.' , ' Jr.').replace(', Sr.' , ' Sr.').split(', ')
else:
return
Expand Down

0 comments on commit 3ab130d

Please sign in to comment.