mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 16:39:55 +00:00
Merge pull request #1924 from LemmyNet/fix-1914
Fix build error in #1914
This commit is contained in:
commit
ffc898a7b8
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ impl ActivityHandler for AnnounceActivity {
|
|||
// TODO: this can probably be implemented in a cleaner way
|
||||
match self.object {
|
||||
// Dont insert these into activities table, as they are not activities.
|
||||
AnnouncableActivities::Page(_) | AnnouncableActivities::Note(_) => {}
|
||||
AnnouncableActivities::Page(_) => {}
|
||||
_ => {
|
||||
let object_value = serde_json::to_value(&self.object)?;
|
||||
let object_data: ActivityCommonFields = serde_json::from_value(object_value.to_owned())?;
|
||||
|
|
Loading…
Reference in a new issue