Loading android/app/src/com/android/bluetooth/hfpclient/HeadsetClientService.java +4 −2 Original line number Diff line number Diff line Loading @@ -608,10 +608,12 @@ public class HeadsetClientService extends ProfileService { List<BluetoothHeadsetClientCall> defaultValue = new ArrayList<>(); if (service != null) { List<HfpClientCall> calls = service.getCurrentCalls(device); if (calls != null) { for (HfpClientCall call : calls) { defaultValue.add(toLegacyCall(call)); } } } receiver.send(defaultValue); } catch (RuntimeException e) { receiver.propagateException(e); Loading Loading
android/app/src/com/android/bluetooth/hfpclient/HeadsetClientService.java +4 −2 Original line number Diff line number Diff line Loading @@ -608,10 +608,12 @@ public class HeadsetClientService extends ProfileService { List<BluetoothHeadsetClientCall> defaultValue = new ArrayList<>(); if (service != null) { List<HfpClientCall> calls = service.getCurrentCalls(device); if (calls != null) { for (HfpClientCall call : calls) { defaultValue.add(toLegacyCall(call)); } } } receiver.send(defaultValue); } catch (RuntimeException e) { receiver.propagateException(e); Loading