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

Commit a83c300c authored by David Duarte's avatar David Duarte Committed by Automerger Merge Worker
Browse files

Merge "BrowsablePlayerConnector: Do not use mHandler from within the Handler"...

Merge "BrowsablePlayerConnector: Do not use mHandler from within the Handler" into main am: 7dfbb73f

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2719516



Change-Id: Ia4d850d353b6650f1c56b48b8ed0667dd70aec53
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents a210d45b 7dfbb73f
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -157,12 +157,11 @@ public class BrowsablePlayerConnector {
                                (int status, String mediaId, List<ListItem> results) -> {
                                    // Send the response as a message so that it is properly
                                    // synchronized
                                    Message cb =
                                            mHandler.obtainMessage(MSG_GET_FOLDER_ITEMS_CB);
                                    Message cb = obtainMessage(MSG_GET_FOLDER_ITEMS_CB);
                                    cb.arg1 = status;
                                    cb.arg2 = results.size();
                                    cb.obj = wrapper;
                                    mHandler.sendMessage(cb);
                                    sendMessage(cb);
                                });
                    } break;