Skip to content

Commit 4c9050e

Browse files
committed
Fixed song not being updated properly
1 parent 1faea1b commit 4c9050e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group 'mhahnFr'
6-
version '3.2.2'
6+
version '3.2.3'
77

88
configurations {
99
jutils

src/mhahnFr/iSongs/core/InfoLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private void updateTrack() {
176176
final var currentSong = getCurrentSong();
177177
final boolean update;
178178
if (playedSong == null) {
179-
update = currentSong == null;
179+
update = currentSong != null;
180180
setCurrentSong(null);
181181
} else if (currentSong == null ||
182182
!currentSong.getFirst().equals(playedSong.title) ||

0 commit comments

Comments
 (0)