As far as I know StreamedMP don't take use of LatestMediaHandler (for Movies and Series). Check your StreamedMP Editor settings.LatestMediaHandler stop displaying unwatched movies with StreamedMP.
The keyword here is 'recent'. Do you have recently unwatched movies to show?
//Add filter menu item "Latest Added Music", "Most Played Music", "Latest Played Music"
if (LatestMediaHandlerSetup.LatestMusicType.Equals("Latest Added Music"))
{
LatestMediaHandlerSetup.LatestMusicType = "Most Played Music";
pItem = new GUIListItem();
pItem.Label = "Display Most Played Music";
}
else if (LatestMediaHandlerSetup.LatestMusicType.Equals("Most Played Music"))
{
LatestMediaHandlerSetup.LatestMusicType = "Latest Played Music";
pItem = new GUIListItem();
pItem.Label = "Display Latest Played Music";
}
else if (LatestMediaHandlerSetup.LatestMusicType.Equals("Latest Played Music"))
{
LatestMediaHandlerSetup.LatestMusicType = "Latest Added Music";
pItem = new GUIListItem();
pItem.Label = "Display Latest Added Music";
}
Seems to be a bug in the MyVideos plugin - I already informed devs about itLatestMediaHandler stop displaying unwatched movies with StreamedMP.
How can resolve that?
Seems to be a bug in the MyVideos plugin - I already informed devs about itLatestMediaHandler stop displaying unwatched movies with StreamedMP.
How can resolve that?