Kodi Community Forum

Full Version: Opening custom default nodes wierdness
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If I copy the default nodes (Recently Added Movies, etc) to \userdata\library\video\ and try opening them using ActivateWindow(Videos,recentlyaddedmovies,return) they don't get loaded - the ones in XBMCs install folder get loaded instead. I have to use ActivateWindow(Videos,library://video/recentlyaddedmovies.xml) if I want to open them.

Shouldn't userdata stuff have priority?
This is because recentlyaddedmovies is just a shortcut for videodb://recentlyaddedmovies/, not library://video/recentlyaddedmovies.xml. i.e. it isn't actually using the one in XBMC's install folder at all - it's using the built-in one (non-filter).

I think you should be able to call it without the .xml ?
OK thanks.