Skip to content

Commit bec8038

Browse files
committed
MPD: Fix typo with list grouping.
1 parent 32cd8b1 commit bec8038

File tree

1 file changed

+1
-1
lines changed
  • JMPDComm/src/main/java/org/a0z/mpd

1 file changed

+1
-1
lines changed

JMPDComm/src/main/java/org/a0z/mpd/MPD.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ public List<Album> getAllAlbums(final boolean trackCountNeeded) throws MPDServer
707707

708708
final List<Album> albums;
709709
// Use MPD 0.19's album grouping feature if available.
710-
if (mpdConnection.isProtocolVersionSupported(0, 18)) {
710+
if (mpdConnection.isProtocolVersionSupported(0, 19)) {
711711
albums = listAllAlbumsGrouped(false);
712712
} else {
713713
final List<String> albumNames = listAlbums();

0 commit comments

Comments
 (0)