From 57d08e231cf15909abda2b3b07f30a97643b345f Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Wed, 14 Oct 2020 23:25:41 -0700 Subject: [PATCH] Fix typo in plexapi includeBandwidths --- lib/plexapi/audio.py | 4 ++-- lib/plexapi/photo.py | 2 +- lib/plexapi/video.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/plexapi/audio.py b/lib/plexapi/audio.py index 0f1b0c7f..8b5bf9cb 100644 --- a/lib/plexapi/audio.py +++ b/lib/plexapi/audio.py @@ -125,7 +125,7 @@ class Artist(Audio): _include = ('?checkFiles=1&includeExtras=1&includeRelated=1' '&includeOnDeck=1&includeChapters=1&includePopularLeaves=1' '&includeMarkers=1&includeConcerts=1&includePreferences=1' - '&indcludeBandwidths=1&includeLoudnessRamps=1') + '&includeBandwidths=1&includeLoudnessRamps=1') def _loadData(self, data): """ Load attribute values from Plex XML response. """ @@ -335,7 +335,7 @@ class Track(Audio, Playable): _include = ('?checkFiles=1&includeExtras=1&includeRelated=1' '&includeOnDeck=1&includeChapters=1&includePopularLeaves=1' '&includeMarkers=1&includeConcerts=1&includePreferences=1' - '&indcludeBandwidths=1&includeLoudnessRamps=1') + '&includeBandwidths=1&includeLoudnessRamps=1') def _loadData(self, data): """ Load attribute values from Plex XML response. """ diff --git a/lib/plexapi/photo.py b/lib/plexapi/photo.py index e03f0231..51e087ce 100644 --- a/lib/plexapi/photo.py +++ b/lib/plexapi/photo.py @@ -111,7 +111,7 @@ class Photo(PlexPartialObject): _include = ('?checkFiles=1&includeExtras=1&includeRelated=1' '&includeOnDeck=1&includeChapters=1&includePopularLeaves=1' '&includeMarkers=1&includeConcerts=1&includePreferences=1' - '&indcludeBandwidths=1&includeLoudnessRamps=1') + '&includeBandwidths=1&includeLoudnessRamps=1') def _loadData(self, data): """ Load attribute values from Plex XML response. """ diff --git a/lib/plexapi/video.py b/lib/plexapi/video.py index ab1c3005..cfc5cd44 100644 --- a/lib/plexapi/video.py +++ b/lib/plexapi/video.py @@ -280,7 +280,7 @@ class Movie(Playable, Video): _include = ('?checkFiles=1&includeExtras=1&includeRelated=1' '&includeOnDeck=1&includeChapters=1&includePopularLeaves=1' '&includeConcerts=1&includePreferences=1' - '&indcludeBandwidths=1') + '&includeBandwidths=1') def _loadData(self, data): """ Load attribute values from Plex XML response. """ @@ -659,7 +659,7 @@ class Episode(Playable, Video): _include = ('?checkFiles=1&includeExtras=1&includeRelated=1' '&includeOnDeck=1&includeChapters=1&includePopularLeaves=1' '&includeMarkers=1&includeConcerts=1&includePreferences=1' - '&indcludeBandwidths=1') + '&includeBandwidths=1') def _loadData(self, data): """ Load attribute values from Plex XML response. """