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

Commit 58cafe13 authored by William Escande's avatar William Escande
Browse files

VolumeControl: Fix wrong data type

Bug: 324492914
Test: m Bluetooth | no logic modified
Flag: Exempt, no-op
Change-Id: I1f2ddba7720d0a6fb3bc8f754bf47d2f013e9991
parent 3666944e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -298,7 +298,7 @@ public final class BluetoothVolumeControl implements BluetoothProfile, AutoClose
                return;
            }
            try {
                final SynchronousResultReceiver<Integer> recv = SynchronousResultReceiver.get();
                final SynchronousResultReceiver<Void> recv = SynchronousResultReceiver.get();
                mService.registerCallback(mCallback, mAttributionSource, recv);
                recv.awaitResultNoInterrupt(getSyncTimeout()).getValue(null);
            } catch (RemoteException e) {