Skip to content

Commit

Permalink
(#59) Use albumsort instead of album for list
Browse files Browse the repository at this point in the history
  • Loading branch information
Difegue committed Sep 15, 2023
1 parent d11811d commit 6d0e2f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task LoadDataAsync()
FilteredSource.CollectionChanged += (s, e) => OnPropertyChanged(nameof(IsSourceEmpty));

Source.Clear();
var response = await _mpdService.SafelySendCommandAsync(new ListCommand(MpdTags.Album));
var response = await _mpdService.SafelySendCommandAsync(new ListCommand(MpdTags.AlbumSort));

if (response != null)
GroupAlbumsByName(response);
Expand Down

0 comments on commit 6d0e2f4

Please sign in to comment.