diff --git a/src/url.cpp b/src/url.cpp index 0977aab..dc33b31 100644 --- a/src/url.cpp +++ b/src/url.cpp @@ -427,7 +427,7 @@ const string URL::archive() const string answer = oss.str(); if (regex_search(answer, match, regex("Content-Location: (.+)\r\n"))) { - return "https://web.archive.org/" + match[1].str(); + return "https://web.archive.org" + match[1].str(); } } catch (const std::exception &e)