Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 060b4e1f authored by Sungsoo Lim's avatar Sungsoo Lim
Browse files

Send a message with data in MediaController.MessageHandler.post()

Bug: 21478435
Change-Id: Ifd50b857c4503d39868540f6256c78f0cb510c83
parent de3efbb9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1018,7 +1018,9 @@ public final class MediaController {
        }

        public void post(int what, Object obj, Bundle data) {
            obtainMessage(what, obj).sendToTarget();
            Message msg = obtainMessage(what, obj);
            msg.setData(data);
            msg.sendToTarget();
        }
    }