summaryrefslogtreecommitdiffstats
path: root/server/src/apub/community.rs
diff options
context:
space:
mode:
authorFelix Ableitner <me@nutomic.com>2020-06-16 13:35:26 +0200
committerFelix Ableitner <me@nutomic.com>2020-06-16 13:35:26 +0200
commit68bcc26ff611cf716e75aacd9427a73fd39a2fcc (patch)
tree9afc362b6af4ded8cf6642aa6bf36bfa51e3e7c9 /server/src/apub/community.rs
parent325ed2ec3b2c6266de7af32a6d1fec74808f1cb7 (diff)
Fix community description federation (ref #647)
Also disable the actor refetch interval in debug builds.
Diffstat (limited to 'server/src/apub/community.rs')
-rw-r--r--server/src/apub/community.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/apub/community.rs b/server/src/apub/community.rs
index 3752798f..8c8c3b28 100644
--- a/server/src/apub/community.rs
+++ b/server/src/apub/community.rs
@@ -76,7 +76,7 @@ impl ToApub for Community {
if let Some(d) = self.description.to_owned() {
// TODO: this should be html, also add source field with raw markdown
// -> same for post.content and others
- oprops.set_summary_xsd_string(d)?;
+ oprops.set_content_xsd_string(d)?;
}
let mut endpoint_props = EndpointProperties::default();