aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/github/daneren2005/dsub/service/DownloadService.java21
1 files changed, 14 insertions, 7 deletions
diff --git a/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java b/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java
index 40538eae..0ed79d52 100644
--- a/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java
+++ b/app/src/main/java/github/daneren2005/dsub/service/DownloadService.java
@@ -1461,7 +1461,7 @@ public class DownloadService extends Service {
subtractNextPosition = 0;
}
}
- onSongProgress();
+ onSongProgress(cachedPosition < 2000 ? true: false);
Thread.sleep(1000L);
}
catch(Exception e) {
@@ -2632,7 +2632,11 @@ public class DownloadService extends Service {
});
}
}
+
private synchronized void onSongProgress() {
+ onSongProgress(true);
+ }
+ private synchronized void onSongProgress(boolean manual) {
final long atRevision = revision;
final Integer duration = getPlayerDuration();
final boolean isSeekable = isSeekable();
@@ -2648,12 +2652,15 @@ public class DownloadService extends Service {
});
}
- handler.post(new Runnable() {
- @Override
- public void run() {
- mRemoteControl.setPlaybackState(playerState.getRemoteControlClientPlayState());
- }
- });
+ if(manual) {
+ Log.d(TAG, "Manual update");
+ handler.post(new Runnable() {
+ @Override
+ public void run() {
+ mRemoteControl.setPlaybackState(playerState.getRemoteControlClientPlayState());
+ }
+ });
+ }
}
private void onStateUpdate() {
final long atRevision = revision;