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 048285af7f
commit a66aa7ae84

View file

@ -5328,6 +5328,11 @@ static void get_managed_objects_reply(DBusPendingCall *pending, void *user_data)
return; 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) { if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
spa_log_error(monitor->log, "GetManagedObjects() failed: %s", spa_log_error(monitor->log, "GetManagedObjects() failed: %s",
dbus_message_get_error_name(r)); dbus_message_get_error_name(r));