diff --git a/src/fetch/mod.rs b/src/fetch/mod.rs index e543c9d..71e1ce5 100644 --- a/src/fetch/mod.rs +++ b/src/fetch/mod.rs @@ -55,7 +55,7 @@ pub async fn fetch_object_http( ) -> Result, Error> { static CONTENT_TYPE: HeaderValue = HeaderValue::from_static(FEDERATION_CONTENT_TYPE); static ALT_CONTENT_TYPE: HeaderValue = HeaderValue::from_static( - r#"application/ld+json; profile="https://www.w3.org/ns/activitystreams"#, + r#"application/ld+json; profile="https://www.w3.org/ns/activitystreams""#, ); let res = fetch_object_http_with_accept(url, data, &CONTENT_TYPE).await?;