From 5ab0a034a20ad207a2261dae6c86abe2e7cc38d7 Mon Sep 17 00:00:00 2001 From: Laurent Cremmer Date: Thu, 1 Oct 2015 17:28:38 +0100 Subject: [PATCH] Fixed in car multimedia handling --- .../android/vanilla/MirrorLinkMediaBrowserService.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ch/blinkenlights/android/vanilla/MirrorLinkMediaBrowserService.java b/src/ch/blinkenlights/android/vanilla/MirrorLinkMediaBrowserService.java index 188a57ca..5410cdfb 100644 --- a/src/ch/blinkenlights/android/vanilla/MirrorLinkMediaBrowserService.java +++ b/src/ch/blinkenlights/android/vanilla/MirrorLinkMediaBrowserService.java @@ -586,27 +586,27 @@ public class MirrorLinkMediaBrowserService extends MediaBrowserService implement break; case MSG_PREVSONG: if(PlaybackService.hasInstance()) { - PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.SeekForward, null); + PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.PreviousSong, null); } break; case MSG_SEEKFW: if(PlaybackService.hasInstance()) { - PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.SeekBackward, null); + PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.SeekForward, null); } break; case MSG_SEEKBW: if(PlaybackService.hasInstance()) { - PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.Repeat, null); + PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.SeekBackward, null); } break; case MSG_REPEAT: if(PlaybackService.hasInstance()) { - PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.Shuffle, null); + PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.Repeat, null); } break; case MSG_SHUFFLE: if(PlaybackService.hasInstance()) { - PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.NextSong, null); + PlaybackService.get(MirrorLinkMediaBrowserService.this).performAction(Action.Shuffle, null); } break; case MSG_UPDATE_STATE: