summaryrefslogtreecommitdiffstats
path: root/server/src/apub/comment.rs
diff options
context:
space:
mode:
authorFelix <me@nutomic.com>2020-04-29 21:10:50 +0200
committerFelix <me@nutomic.com>2020-04-29 21:10:50 +0200
commit770dcbdc49c9bf01f781e5259dc8e6d816143344 (patch)
tree6c297d0adec21d4bd1ae7f74e6e62c076b1f6b78 /server/src/apub/comment.rs
parentc43f06124a00f3af8559d849541c2b84d3383f13 (diff)
wip: add former_type to tombstone
Diffstat (limited to 'server/src/apub/comment.rs')
-rw-r--r--server/src/apub/comment.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/apub/comment.rs b/server/src/apub/comment.rs
index 4a5f18b7..14a09956 100644
--- a/server/src/apub/comment.rs
+++ b/server/src/apub/comment.rs
@@ -39,7 +39,7 @@ impl ToApub for Comment {
impl ToTombstone for Comment {
fn to_tombstone(&self) -> Result<Tombstone, Error> {
- create_tombstone(self.deleted, &self.ap_id, self.published, self.updated)
+ create_tombstone(self.deleted, &self.ap_id, self.published, self.updated, NoteType.to_string())
}
}