(I asked this in Channel Plugin Development, but apparently this is the more appropriate forum…)
I am working on a plugin that filters TV Shows in your library and presents a list of the shows for you to watch. I’ve gotten the list of shows that I want to display, but am not finding the right Object (or values) to put into the ObjectContainer. I’ve tried both TVShowObjects and DirectoryObjects, and both display the item correctly, but when I click it just takes me to a page that again displays the thumbnail.
show_object = TVShowObject(
key='/library/metadata/365',
rating_key='365',
title=show_details['title'],
summary=unicode(show_details['summary']),
It takes me to:
/channel/%2Fvideo%2Ftvmonitor/%2Flibrary%2Fmetadata%2F365
But I want to go to:
/details?key=%2Flibrary%2Fmetadata%2F365
I’ve also tried setting ‘url’ in the TVShowObject, (with both ‘/library/metadata/365’ and ‘/details?key=%2Flibrary%2Fmetadata%2F365’) but it tells me no service exists for those URLs…
Is there an object that just links to the standard TV show page from a plugin?
Thanks.