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

Commit 760971d0 authored by Eric Laurent's avatar Eric Laurent
Browse files

Fix A2dpAudioInterface getParameters.

A2dpAudioInterface::getParameters() was prepending a ';' to the key value pair returned from underlying AudioHardwareInterface.
parent 22396577
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -185,7 +185,9 @@ String8 A2dpAudioInterface::getParameters(const String8& keys)
    String8 keyValuePairs  = a2dpParam.toString();

    if (param.size()) {
        if (keyValuePairs != "") {
            keyValuePairs += ";";
        }
        keyValuePairs += mHardwareInterface->getParameters(param.toString());
    }