@@ -550,15 +550,16 @@ class MovieSection(LibrarySection):
550550 Attributes:
551551 ALLOWED_FILTERS (list<str>): List of allowed search filters. ('unwatched',
552552 'duplicate', 'year', 'decade', 'genre', 'contentRating', 'collection',
553- 'director', 'actor', 'country', 'studio', 'resolution')
553+ 'director', 'actor', 'country', 'studio', 'resolution', 'guid' )
554554 ALLOWED_SORT (list<str>): List of allowed sorting keys. ('addedAt',
555555 'originallyAvailableAt', 'lastViewedAt', 'titleSort', 'rating',
556556 'mediaHeight', 'duration')
557557 TAG (str): 'Directory'
558558 TYPE (str): 'movie'
559559 """
560560 ALLOWED_FILTERS = ('unwatched' , 'duplicate' , 'year' , 'decade' , 'genre' , 'contentRating' ,
561- 'collection' , 'director' , 'actor' , 'country' , 'studio' , 'resolution' )
561+ 'collection' , 'director' , 'actor' , 'country' , 'studio' , 'resolution' ,
562+ 'guid' )
562563 ALLOWED_SORT = ('addedAt' , 'originallyAvailableAt' , 'lastViewedAt' , 'titleSort' , 'rating' ,
563564 'mediaHeight' , 'duration' )
564565 TAG = 'Directory'
@@ -570,13 +571,14 @@ class ShowSection(LibrarySection):
570571
571572 Attributes:
572573 ALLOWED_FILTERS (list<str>): List of allowed search filters. ('unwatched',
573- 'year', 'genre', 'contentRating', 'network', 'collection')
574+ 'year', 'genre', 'contentRating', 'network', 'collection', 'guid' )
574575 ALLOWED_SORT (list<str>): List of allowed sorting keys. ('addedAt', 'lastViewedAt',
575576 'originallyAvailableAt', 'titleSort', 'rating', 'unwatched')
576577 TAG (str): 'Directory'
577578 TYPE (str): 'show'
578579 """
579- ALLOWED_FILTERS = ('unwatched' , 'year' , 'genre' , 'contentRating' , 'network' , 'collection' )
580+ ALLOWED_FILTERS = ('unwatched' , 'year' , 'genre' , 'contentRating' , 'network' , 'collection' ,
581+ 'guid' )
580582 ALLOWED_SORT = ('addedAt' , 'lastViewedAt' , 'originallyAvailableAt' , 'titleSort' ,
581583 'rating' , 'unwatched' )
582584 TAG = 'Directory'
0 commit comments