mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
Don't overwrite the last redirected location (#1589)
* Don't overwrite the last redirected location * Check the last redirected location
This commit is contained in:
parent
067890133c
commit
4a61f68fa4
2 changed files with 4 additions and 3 deletions
|
@ -3920,7 +3920,8 @@ inline bool redirect(T &cli, Request &req, Response &res,
|
|||
if (ret) {
|
||||
req = new_req;
|
||||
res = new_res;
|
||||
res.location = location;
|
||||
|
||||
if (res.location.empty()) res.location = location;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -972,7 +972,7 @@ TEST(YahooRedirectTest, Redirect_Online) {
|
|||
res = cli.Get("/");
|
||||
ASSERT_TRUE(res);
|
||||
EXPECT_EQ(200, res->status);
|
||||
EXPECT_EQ("https://yahoo.com/", res->location);
|
||||
EXPECT_EQ("https://www.yahoo.com/", res->location);
|
||||
}
|
||||
|
||||
TEST(HttpsToHttpRedirectTest, Redirect_Online) {
|
||||
|
@ -5301,7 +5301,7 @@ TEST(YahooRedirectTest2, SimpleInterface_Online) {
|
|||
res = cli.Get("/");
|
||||
ASSERT_TRUE(res);
|
||||
EXPECT_EQ(200, res->status);
|
||||
EXPECT_EQ("https://yahoo.com/", res->location);
|
||||
EXPECT_EQ("https://www.yahoo.com/", res->location);
|
||||
}
|
||||
|
||||
TEST(YahooRedirectTest3, SimpleInterface_Online) {
|
||||
|
|
Loading…
Reference in a new issue