mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-14 08:23:59 +00:00
Make previous commit compile
This commit is contained in:
parent
6b5354fb11
commit
459b95bc7e
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
use activitystreams::{base::AnyBase, context};
|
use activitystreams::{base::AnyBase, context};
|
||||||
use lemmy_utils::LemmyError;
|
use lemmy_utils::LemmyError;
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
|
use url::Url;
|
||||||
|
|
||||||
pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
||||||
let context_ext = AnyBase::from_arbitrary_json(json!(
|
let context_ext = AnyBase::from_arbitrary_json(json!(
|
||||||
|
@ -14,5 +15,9 @@ pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
||||||
"id": "pt:commentsEnabled"
|
"id": "pt:commentsEnabled"
|
||||||
}
|
}
|
||||||
}))?;
|
}))?;
|
||||||
Ok(vec![AnyBase::from(context()), context_ext, "https://w3id.org/security/v1"])
|
Ok(vec![
|
||||||
|
AnyBase::from(context()),
|
||||||
|
context_ext,
|
||||||
|
AnyBase::from(Url::parse("https://w3id.org/security/v1")?),
|
||||||
|
])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue