Fix build

This commit is contained in:
Maximilian Bosch 2023-07-09 11:35:29 +02:00
parent ebe2db5987
commit 0396dfc096
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A
2 changed files with 1 additions and 3 deletions

View File

@ -5,7 +5,6 @@ use std::{collections::HashMap, error::Error as _, io::Write, sync::Arc};
use anyhow::{anyhow, Context, Result};
use cookie_store::CookieStore;
use once_cell::sync::Lazy;
use regex::Regex;
use reqwest::{Client, IntoUrl, Proxy, Url};
use reqwest_cookie_store::CookieStoreMutex;
use scraper::{ElementRef, Html, Selector};
@ -223,7 +222,7 @@ impl ILIAS {
unreachable!()
}
pub async fn is_error_response(html: &Html) {
pub fn is_error_response(html: &Html) -> bool {
html.select(&ALERT_DANGER).next().is_some()
}

View File

@ -3,7 +3,6 @@
use anyhow::{anyhow, Context, Result};
use futures::future::{self, Either};
use futures::StreamExt;
use ignore::gitignore::Gitignore;
use indicatif::{ProgressDrawTarget, ProgressStyle};
use structopt::StructOpt;
use tokio::fs;