diff --git a/tidalapi/user.py b/tidalapi/user.py index 5249984..c99e374 100644 --- a/tidalapi/user.py +++ b/tidalapi/user.py @@ -618,7 +618,7 @@ def albums_paginated( :param order_direction: Optional; A :class:`OrderDirection` describing the ordering direction when sorting by `order`. eg.: "ASC", "DESC" :return: A :class:`list` :class:`~tidalapi.album.Album` objects containing the favorite albums. """ - count = self.session.user.favorites.get_artists_count() + count = self.session.user.favorites.get_albums_count() return get_items( self.session.user.favorites.albums, count, order, order_direction )