Hi,
I've got a strange behaviour with the current plexmedia webinterface...
My channel will display mixed content:
- 2 folders
- 1 videoclip
The troublemaker is the length of the "title" of the videoclip. Why? I don't know...
def createVCObject(item, url, container = False):
vco = VideoClipObject(key = Callback(createVCObject, item = item, url = url, container = True),rating_key = item,title = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",summary = "My summary",thumb = ICON_PLAY,
Results in broken display. The icons are displayed in a strange way with no summry...

Just add 1 more 'a' solves this problem...
def createVCObject(item, url, container = False):
vco = VideoClipObject(key = Callback(createVCObject, item = item, url = url, container = True),rating_key = item,title = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",summary = "My summary",thumb = ICON_PLAY,
Content is displayed correctly...

With webfront I mean the direct webinterface of the pms.
Any hints about this strange thing?
Greets
Sascha