bluez: print a nicer warning when the bluez service is not available

This commit is contained in:
George Kiagiadakis 2024-03-25 09:29:07 +02:00 committed by Wim Taymans
parent 7ee8192ce9
commit ddfe3daa22
1 changed files with 5 additions and 0 deletions

View File

@ -5369,6 +5369,11 @@ static void get_managed_objects_reply(DBusPendingCall *pending, void *user_data)
return;
}
if (dbus_message_is_error(r, DBUS_ERROR_NAME_HAS_NO_OWNER)) {
spa_log_warn(monitor->log, "BlueZ system service is not available");
return;
}
if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
spa_log_error(monitor->log, "GetManagedObjects() failed: %s",
dbus_message_get_error_name(r));