From 07a6c58536a1ab5009cc2da75113f24132e845b5 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sat, 7 Apr 2012 16:12:37 -0700 Subject: [PATCH] Fix url parsing in HttpsClient. --- src/HttpsClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpsClient.cpp b/src/HttpsClient.cpp index ccc015ff25..01d8590612 100644 --- a/src/HttpsClient.cpp +++ b/src/HttpsClient.cpp @@ -371,8 +371,8 @@ bool HttpsClient::httpsParseUrl(const std::string strUrl, std::string& strDomain if (bMatch) { - strDomain = smMatch[0]; strDomain = smMatch[1]; + strDomain = smMatch[2]; } return bMatch;