Fix deprecated collection.children to items

This commit is contained in:
JonnyWong16 2021-02-15 17:04:50 -08:00
parent 858fb18f7f
commit 72244f558d
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -77,7 +77,7 @@ class Collections(PlexPartialObject, ArtMixin, PosterMixin, LabelMixin):
@property
@deprecated('use "items" instead')
def children(self):
return self.fetchItems(self.key)
return self.items()
@property
def thumbUrl(self):