diff options
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r-- | src/github/daneren2005/dsub/service/DLNAController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/service/DLNAController.java b/src/github/daneren2005/dsub/service/DLNAController.java index 2afb0fea..1ad48ef2 100644 --- a/src/github/daneren2005/dsub/service/DLNAController.java +++ b/src/github/daneren2005/dsub/service/DLNAController.java @@ -144,7 +144,7 @@ public class DLNAController extends RemoteController { } else if(downloadService.getPlayerState() == PlayerState.STARTED) {
// Played until the end
downloadService.setPlayerState(PlayerState.COMPLETED);
- downloadService.next();
+ downloadService.onSongCompleted();
} else {
downloadService.setPlayerState(PlayerState.STOPPED);
}
|