From 4be310cab1b20595af0b257c05c9296aaf1a29ce Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 15 Jan 2025 00:37:48 +0100 Subject: [PATCH] fix: oops still cooking these --- upub/core/src/traits/process.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/upub/core/src/traits/process.rs b/upub/core/src/traits/process.rs index 0442d74..e9b2884 100644 --- a/upub/core/src/traits/process.rs +++ b/upub/core/src/traits/process.rs @@ -49,8 +49,6 @@ impl Processor for crate::Context { apb::ActivityType::Undo => Ok(process_undo(self, activity, tx).await?), apb::ActivityType::Delete => Ok(process_delete(self, activity, tx).await?), apb::ActivityType::Update => Ok(process_update(self, activity, tx).await?), - apb::ActivityType::Flag => Ok(process_flag(self, activity, tx).await?), - apb::ActivityType::Move => Ok(process_move(self, activity, tx).await?), _ => Err(ProcessorError::Unprocessable(activity.id()?.to_string())), } }