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

Commit 3516c0e5 authored by Sal Savage's avatar Sal Savage Committed by Gerrit Code Review
Browse files

Merge "Audio HAL: Check if ProviderFactory is null before printing debugging"

parents e7d8c660 dede63b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -217,10 +217,10 @@ void BluetoothAudioClientInterface::fetch_audio_provider() {

  android::sp<IBluetoothAudioProvidersFactory> providersFactory =
      IBluetoothAudioProvidersFactory::getService();
  CHECK(providersFactory != nullptr);
  LOG(INFO) << "IBluetoothAudioProvidersFactory::getService() returned "
            << providersFactory.get()
            << (providersFactory->isRemote() ? " (remote)" : " (local)");
  CHECK(providersFactory != nullptr);

  std::promise<void> getProviderCapabilities_promise;
  auto getProviderCapabilities_future =