Do not return error if activity type is not supported

This commit is contained in:
silverpill 2022-05-27 22:46:07 +00:00
parent 28fad8986c
commit 14cb90224f

View file

@ -415,7 +415,8 @@ pub async fn receive_activity(
PERSON
},
_ => {
return Err(HttpError::ValidationError("activity type is not supported".into()));
log::warn!("activity type is not supported: {}", activity_raw);
return Ok(());
},
};
log::info!(