Release plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners
Hello @jurialmunkey.

 I have noticed a problem with the new version of The Moviedb Helper.
Cast-thumbs are no longer displayed.

I had to remove themoviedb.helper from my cast thumb variable, then it worked again.
Cast-thumbs are then displayed with SHS which is actually my fallback.

Here is my original variable:
xml:
<!-- Cast ContainerContent -->
    <variable name="EmbuaryCast">
        <value condition="String.IsEqual(ListItem.DBType,set)">plugin://script.embuary.helper?info=getsetcast&type=movie&dbid=$INFO[ListItem.DBID]</value>
        <value condition="String.IsEqual(ListItem.DBType,movie) + !String.IsEmpty(ListItem.DBID) + !String.IsEqual(ListItem.DBID,0)">plugin://script.embuary.helper?info=getcast&type=movie&dbid=$INFO[ListItem.DBID]</value>
        <value condition="String.IsEqual(ListItem.DBType,movie) + String.IsEqual(ListItem.DBID,0)">plugin://script.embuary.helper?info=getcast&type=movie&title='$ESCINFO[ListItem.Title]'</value>
        <value condition="String.IsEqual(ListItem.DBType,tvshow) + !String.IsEmpty(ListItem.DBID) + !String.IsEqual(ListItem.DBID,0)">plugin://script.embuary.helper?info=getcast&type=tvshow&dbid=$INFO[ListItem.DBID]</value>
        <value condition="String.IsEqual(ListItem.DBType,tvshow) + String.IsEqual(ListItem.DBID,0)">plugin://script.embuary.helper?info=getcast&type=tvshow&title='$ESCINFO[ListItem.TVShowTitle]'</value>
        <value condition="[String.IsEqual(ListItem.DBType,episode) | String.IsEqual(ListItem.DBType,season)] + !String.IsEmpty(ListItem.DBID)">plugin://script.embuary.helper?info=getcast&type=tvshow&title='$ESCINFO[ListItem.TVShowTitle]'</value>
        <value condition="Container.Content(seasons) + !String.IsEmpty(ListItem(1).DBID)">plugin://script.embuary.helper?info=getcast&type=tvshow&title='$ESCINFO[ListItem(1).TVShowTitle]'</value>
        <value condition="Container.Content(seasons) + !String.IsEmpty(ListItem(2).DBID)">plugin://script.embuary.helper?info=getcast&type=tvshow&title='$ESCINFO[ListItem(2).TVShowTitle]'</value>
        <value condition="String.IsEqual(ListItem.DBType,movie) + !String.IsEmpty(ListItem.Property(tmdb_id))">plugin://plugin.video.themoviedb.helper/?info=cast&type=movie&tmdb_id=$INFO[ListItem.Property(tmdb_id)]</value>
        <value condition="[String.IsEqual(ListItem.DBType,tvshow) | String.IsEqual(ListItem.DBType,season) | String.IsEqual(ListItem.DBType,episode)] + !String.IsEmpty(ListItem.Property(tmdb_id))">plugin://plugin.video.themoviedb.helper/?info=cast&type=tv&tmdb_id=$INFO[ListItem.Property(tmdb_id)]</value>
        <value condition="!String.IsEmpty(ListItem.DBTYPE) + !String.IsEmpty(ListItem.DBID)">plugin://script.skin.helper.service/?action=getcast&$INFO[ListItem.DBTYPE]=$INFO[ListItem.DBID]&downloadthumbs=true</value>
        <value condition="!String.IsEmpty(ListItem.DBTYPE)">plugin://script.skin.helper.service/?action=getcast&$INFO[ListItem.DBTYPE]=$INFO[ListItem.Title]&downloadthumbs=true</value>
    </variable>

ImageImage
Reply


Messages In This Thread
RE: TheMovieDB Helper - by jurialmunkey - 2019-07-31, 11:47
RE: plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners - by Fuchs2468 - 2022-04-20, 13:02
Logout Mark Read Team Forum Stats Members Help
plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners2