fix: oops still cooking these

This commit is contained in:
əlemi 2025-01-15 00:37:48 +01:00
parent 381e108d38
commit 4be310cab1
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -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())),
}
}