From d0943a369e138f72f80bcafb6557f6d6dbdb0bda Mon Sep 17 00:00:00 2001 From: blacktwin Date: Tue, 30 Jun 2020 09:21:44 -0400 Subject: [PATCH] add firstCharacterKey attribute to library.Sort class --- plexapi/library.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plexapi/library.py b/plexapi/library.py index fa4a7baf..0dcf05be 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -1176,6 +1176,7 @@ class Sort(PlexObject): self.descKey = data.attrib.get('descKey') self.key = data.attrib.get('key') self.title = data.attrib.get('title') + self.firstCharacterKey = data.attrib.get('firstCharacterKey') class FirstCharacter(PlexObject):