From 94eb5cdef38657c69c5b00ee4bf63dfcfb66f5f3 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 24 Nov 2022 09:15:07 -0800 Subject: [PATCH] Add movie editionTitle to exporter --- plexpy/exporter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plexpy/exporter.py b/plexpy/exporter.py index f9e4e893..62f4b2ba 100644 --- a/plexpy/exporter.py +++ b/plexpy/exporter.py @@ -185,6 +185,7 @@ class Export(object): }, 'duration': None, 'durationHuman': lambda o: helpers.human_duration(getattr(o, 'duration', 0)), + 'editionTitle': None, 'fields': { 'name': None, 'locked': None @@ -1267,7 +1268,7 @@ class Export(object): _media_type = 'movie' _metadata_levels = { 1: [ - 'ratingKey', 'title', 'titleSort', 'originalTitle', 'originallyAvailableAt', 'year', 'addedAt', + 'ratingKey', 'title', 'titleSort', 'originalTitle', 'editionTitle', 'originallyAvailableAt', 'year', 'addedAt', 'rating', 'ratingImage', 'audienceRating', 'audienceRatingImage', 'userRating', 'contentRating', 'studio', 'tagline', 'summary', 'guid', 'duration', 'durationHuman', 'type' ],