Merge pull request 'Remove category from activitypub context' (#183) from context-remove-category into main

Reviewed-on: https://yerbamate.ml/LemmyNet/lemmy/pulls/183
This commit is contained in:
dessalines 2021-03-02 16:48:24 +00:00
commit 7c4969c92b
1 changed files with 2 additions and 3 deletions

View File

@ -6,12 +6,11 @@ pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
let context_ext = AnyBase::from_arbitrary_json(json!(
{
"sc": "http://schema.org#",
"category": "sc:category",
"sensitive": "as:sensitive",
"stickied": "as:stickied",
"comments_enabled": {
"kind": "sc:Boolean",
"id": "pt:commentsEnabled"
"kind": "sc:Boolean",
"id": "pt:commentsEnabled"
}
}))?;
Ok(vec![AnyBase::from(context()), context_ext])