1
Fork 0

Fix Clippy warning.

This commit is contained in:
Bauke 2022-09-22 21:19:49 +02:00
parent f56ff3e06f
commit 5e82d2ef38
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ fn main() -> Result<()> {
if args.verify {
let verify_feed = |url: &str| -> Result<_> {
let response = ureq_agent.get(&url).call()?;
let response = ureq_agent.get(url).call()?;
sleep(timeout);
Ok((
response.content_type() == "text/xml",