diff --git a/crates/utils/src/utils/validation.rs b/crates/utils/src/utils/validation.rs index 9d68d1820..786b01006 100644 --- a/crates/utils/src/utils/validation.rs +++ b/crates/utils/src/utils/validation.rs @@ -330,7 +330,7 @@ pub fn build_url_str_without_scheme(url_str: &str) -> LemmyResult { } })?; - // Set the scheme to https, then remove the http:// part + // Set the scheme to http, then remove the http:// part url .set_scheme("http") .map_err(|_| LemmyErrorType::InvalidUrl)?;