Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tidalapi/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down