Release plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners
@mikeSiLVO - Can you point me to where in your code you're calling the recommendations script?

Also remove these type of visibility conditions from your containers:
xml:

<visible>Integer.IsGreater(Container(5000).NumItems,0)</visible>

The script automatically manages the visibility of containers using window properties. If you hide the containers early using some other condition then it will cause issues because the script wont be able to see control IDs to populate them - I think this is likely the cause of the issue you're seeing but possibly might also be related to how you're calling the script.

You should use these conditions for container visibility (switch 5000 for specific ID).

xml:

<visible>[!String.IsEmpty(Window.Property(List_5000_Visible)) | !String.IsEmpty(Window.Property(List_5000_IsUpdating))]</visible>

You can also use these properties elsewhere if you need to check the status of lists from other controls. More details here:
https://github.com/jurialmunkey/plugin.v...properties

IsUpdating is set to True while the content is loading and is cleared once added to the container.
Visible is set to True after items have been added to the container. The property will remain empty if no items were added.
Arctic Fuse - Alpha now available. Support me on Ko-fi.
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 jurialmunkey - 2023-10-25, 06:43
Logout Mark Read Team Forum Stats Members Help
plugin.video.themoviedb.helper - Access to TheMovieDb API for Skinners2