Merge pull request #443 from imShara/master

FIX: Can't swich to previous track with long click
This commit is contained in:
Karim Abou Zeid 2018-03-10 10:15:06 +01:00 committed by GitHub
commit 6e18cf4efe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -886,7 +886,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
} }
public void back(boolean force) { public void back(boolean force) {
if (getSongProgressMillis() > 2000) { if (getSongProgressMillis() > 5000) {
seek(0); seek(0);
} else { } else {
playPreviousSong(force); playPreviousSong(force);