Kodi Community Forum

Full Version: question about addSortMethod function in xbmcplugin module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

What addSortMethod should I use to sort a list in a xbmc plugin in the order it is passed to it using addDirectoryItem? (neither SORT_METHOD_NONE nor SORT_METHOD_UNSORTED seem to work the way I hoped it would)

P.S should I maybe use addDirectoryItems and pass all content in a list instead of one by one with addDirectoryItem? Would that make it easier to sort the way I want? (i.e. in the order the list passed to addDirectoryItems is ordered by)