From cfce82af3476799f6d6a5cc18e35cf168cebb5e5 Mon Sep 17 00:00:00 2001 From: "Dr.Blank" <64108942+Dr-Blank@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:41:53 -0500 Subject: [PATCH] Fix class reference in fetchItems method (#1362) --- plexapi/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexapi/audio.py b/plexapi/audio.py index 24200b838..370fe0dcb 100644 --- a/plexapi/audio.py +++ b/plexapi/audio.py @@ -159,7 +159,7 @@ def sonicallySimilar( return self.fetchItems( key, - cls=self.__class__, + cls=type(self), **kwargs, )