From 9f7659a44601e043bdb6724b0ab4f3f59c46e9fe Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 8 Apr 2019 12:41:39 +0300 Subject: a2dp: Fix UUID of remote Sinks Sinks were being reported as Sources. --- profiles/audio/a2dp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c index 4001ea0ea..8f141739c 100644 --- a/profiles/audio/a2dp.c +++ b/profiles/audio/a2dp.c @@ -1686,7 +1686,7 @@ static gboolean get_uuid(const GDBusPropertyTable *property, uuid = A2DP_SOURCE_UUID; break; case AVDTP_SEP_TYPE_SINK: - uuid = A2DP_SOURCE_UUID; + uuid = A2DP_SINK_UUID; break; default: uuid = ""; -- cgit v1.2.1