Do not return error if activity type is not supported
This commit is contained in:
parent
28fad8986c
commit
14cb90224f
1 changed files with 2 additions and 1 deletions
|
@ -415,7 +415,8 @@ pub async fn receive_activity(
|
||||||
PERSON
|
PERSON
|
||||||
},
|
},
|
||||||
_ => {
|
_ => {
|
||||||
return Err(HttpError::ValidationError("activity type is not supported".into()));
|
log::warn!("activity type is not supported: {}", activity_raw);
|
||||||
|
return Ok(());
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
log::info!(
|
log::info!(
|
||||||
|
|
Loading…
Reference in a new issue