diff options
Diffstat (limited to '')
-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 11cb9fb7..47343d48 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); |