mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
revert plot update changes
This commit is contained in:
parent
1cd7663410
commit
717e802615
1 changed files with 3 additions and 3 deletions
|
@ -82,7 +82,7 @@ class WriteKodiDB():
|
|||
if MBitem.get("CriticRating") != None:
|
||||
self.getPropertyParam_Batched(KodiItem, "rating", int(MBitem.get("CriticRating"))/10, params)
|
||||
|
||||
self.getPropertyParam_Batched(KodiItem, "plot", MBitem.get("Overview"), params)
|
||||
#self.getPropertyParam_Batched(KodiItem, "plot", MBitem.get("Overview"), params)
|
||||
self.getPropertyParam_Batched(KodiItem, "plotoutline", MBitem.get("ShortOverview"), params)
|
||||
self.getPropertyParam_Batched(KodiItem, "set", MBitem.get("TmdbCollectionName"), params)
|
||||
self.getPropertyParam_Batched(KodiItem, "sorttitle", MBitem.get("SortName"), params)
|
||||
|
@ -405,8 +405,8 @@ class WriteKodiDB():
|
|||
episode = int(MBitem.get("IndexNumber"))
|
||||
changes |= self.updateProperty(KodiItem,"episode",episode,"episode")
|
||||
|
||||
plot = utils.convertEncoding(API().getOverview(MBitem))
|
||||
changes |= self.updateProperty(KodiItem,"plot",plot,"episode")
|
||||
#plot = utils.convertEncoding(API().getOverview(MBitem))
|
||||
#changes |= self.updateProperty(KodiItem,"plot",plot,"episode")
|
||||
title = utils.convertEncoding(MBitem["Name"])
|
||||
changes |= self.updateProperty(KodiItem,"title",title,"episode")
|
||||
|
||||
|
|
Loading…
Reference in a new issue