diff options
author | June McEnroe <june@causal.agency> | 2019-09-12 14:58:34 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-09-12 14:58:34 -0400 |
commit | 30b7f5480913ac5d051889eb878148bb1807941d (patch) | |
tree | b359a67b903951a8881e7eb50072aa81e0aa535e | |
parent | Consume entire body (diff) | |
download | src-30b7f5480913ac5d051889eb878148bb1807941d.tar.gz src-30b7f5480913ac5d051889eb878148bb1807941d.zip |
Only GET the final redirect location
-rw-r--r-- | bin/title.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/title.c b/bin/title.c index 3ea54e4e..199c18d8 100644 --- a/bin/title.c +++ b/bin/title.c @@ -125,6 +125,11 @@ static CURLcode fetchTitle(const char *url) { if (code) return code; if (!type || strncmp(type, "text/html", 9)) return CURLE_OK; + char *dest; + curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &dest); + code = curl_easy_setopt(curl, CURLOPT_URL, dest); + if (code) return code; + body.len = 0; title = false; curl_easy_setopt(curl, CURLOPT_NOBODY, 0L); |