We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1faea1b commit 4c9050eCopy full SHA for 4c9050e
build.gradle
@@ -3,7 +3,7 @@ plugins {
3
}
4
5
group 'mhahnFr'
6
-version '3.2.2'
+version '3.2.3'
7
8
configurations {
9
jutils
src/mhahnFr/iSongs/core/InfoLoader.java
@@ -176,7 +176,7 @@ private void updateTrack() {
176
final var currentSong = getCurrentSong();
177
final boolean update;
178
if (playedSong == null) {
179
- update = currentSong == null;
+ update = currentSong != null;
180
setCurrentSong(null);
181
} else if (currentSong == null ||
182
!currentSong.getFirst().equals(playedSong.title) ||
0 commit comments