Skip to content

Commit

Permalink
Fix Spotify enable check
Browse files Browse the repository at this point in the history
  • Loading branch information
ErdbeerbaerLP committed Jul 11, 2024
1 parent 53725bf commit a3e1556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jagrosh/jmusicbot/BotConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,6 @@ public Config getTransforms()
}

public boolean isSpotifyEnabled() {
return !getSpotifyClientID().isEmpty() && getSpotifyClientSecret().isEmpty();
return !getSpotifyClientID().isEmpty() && !getSpotifyClientSecret().isEmpty();
}
}

0 comments on commit a3e1556

Please sign in to comment.