fix: trim content before detecting urls

This commit is contained in:
neri 2023-01-26 10:20:02 +01:00
parent 900d9ac449
commit 8f0cfdc91b
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -416,7 +416,7 @@ dependencies = [
[[package]]
name = "datatrash"
version = "2.0.3"
version = "2.0.4"
dependencies = [
"actix-files",
"actix-governor",

View File

@ -1,6 +1,6 @@
[package]
name = "datatrash"
version = "2.0.3"
version = "2.0.4"
authors = ["neri"]
edition = "2021"

View File

@ -127,7 +127,7 @@ async fn build_text_response(path: &Path) -> Result<HttpResponse, Error> {
error::ErrorInternalServerError("this file should be here but could not be found")
})?;
let encoded = htmlescape::encode_minimal(&content);
let html = if !content.contains(&['\n', '\r'][..]) && Url::from_str(&content).is_ok() {
let html = if !content.trim().contains(['\n', '\r']) && Url::from_str(content.trim()).is_ok() {
let attribute_encoded = htmlescape::encode_attribute(&content);
URL_VIEW_HTML
.replace("{link_content}", &encoded)