RasPlex / OpenPHT

OpenPHT is a community driven fork of Plex Home Theater
Other
596 stars 110 forks source link

missing photo summary #320

Open jdevoo opened 4 years ago

jdevoo commented 4 years ago

I updated an old plugin of mine - WebGalleryOfArt.bundle

It's mostly running fine on my setup - OpenPHT: 1.8.0 PMS: 1.18.5.2309 OS X 10.11.6

I have noticed that the text set in the summary attribute for the PhotoObject is not being displayed.

oc.add(PhotoObject(
        key=row[LOOKUP['URL']].replace('/html/', '/art/').replace('.html', '.jpg'),
        rating_key=key,
        title=row[LOOKUP['TITLE']].decode('latin-1'),
        summary=(row[LOOKUP['TITLE']]+'\n'+row[LOOKUP['AUTHOR']]+'\n'+row[LOOKUP['DATE']]+' | '+row[LOOKUP['TECHNIQUE']]+' | '+row[LOOKUP['LOCATION']]).decode('latin-1'),
        thumb=row[LOOKUP['URL']].replace('/html/', '/preview/').replace('.html', '.jpg')

Is there something I can do?

I noticed this commit but am not sure it's related.