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

Commit 80ae1629 authored by Hendrik Hagendorn's avatar Hendrik Hagendorn Committed by android-build-merger
Browse files

Merge "ARTSPConnection: HTTP Authentication: Fix URI bounds" am: 9752654c

am: 896a9f00

Change-Id: Ifff204e653a7de3d4750c9bd97ae8689729b7f6b
parents bb449bae 896a9f00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -954,7 +954,7 @@ static void GetMethodAndURL(
    CHECK_GE(space2, 0);

    method->setTo(request, 0, space1);
    url->setTo(request, space1 + 1, space2 - space1);
    url->setTo(request, space1 + 1, space2 - space1 - 1);
}

void ARTSPConnection::addAuthentication(AString *request) {