Skip to content

Commit

Permalink
Missed negation for playback status check
Browse files Browse the repository at this point in the history
  • Loading branch information
gzsombor committed Feb 1, 2021
1 parent a14cfc5 commit 1f88927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/free/rm/skytube/app/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public Policy getWarningMeteredPolicy() {
}

public boolean isPlaybackStatusEnabled() {
return getPreference(R.string.pref_key_disable_playback_status, false);
return !getPreference(R.string.pref_key_disable_playback_status, false);
}

/**
Expand Down

0 comments on commit 1f88927

Please sign in to comment.