aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-09-04 15:21:48 -0700
committerScott Jackson <daneren2005@gmail.com>2014-09-04 15:21:48 -0700
commit230830216b6e14fa455a90961cced023e5475982 (patch)
treeb30603db201965afdba7aa9fe421842c766720e2 /src
parentb1345f079f5e0e5e746871654d54568662e4b0f3 (diff)
downloaddsub-230830216b6e14fa455a90961cced023e5475982.tar.gz
dsub-230830216b6e14fa455a90961cced023e5475982.tar.bz2
dsub-230830216b6e14fa455a90961cced023e5475982.zip
Increase cutoff point to handle long endings that user probably doesn't care about
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/service/DownloadService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadService.java b/src/github/daneren2005/dsub/service/DownloadService.java
index b3198f3d..f08c8971 100644
--- a/src/github/daneren2005/dsub/service/DownloadService.java
+++ b/src/github/daneren2005/dsub/service/DownloadService.java
@@ -94,7 +94,7 @@ public class DownloadService extends Service {
public static final String START_PLAY = "github.daneren2005.dsub.START_PLAYING";
public static final int FAST_FORWARD = 30000;
public static final int REWIND = 10000;
- private static final double DELETE_CUTOFF = 0.90;
+ private static final double DELETE_CUTOFF = 0.84;
private RemoteControlClientHelper mRemoteControl;