Fix object_id unwrap error in favourite() API method
This commit is contained in:
parent
1d089d4b35
commit
34ca9059b3
1 changed files with 2 additions and 2 deletions
|
@ -240,11 +240,11 @@ async fn favourite(
|
|||
// Federate
|
||||
let Audience { recipients, primary_recipient } =
|
||||
get_like_audience(db_client, &config.instance_url(), &post).await?;
|
||||
let note_id = post.object_id.as_ref().ok_or(HttpError::InternalError)?;
|
||||
let note_id = post.get_object_id(&config.instance_url());
|
||||
let activity = create_activity_like(
|
||||
&config.instance_url(),
|
||||
¤t_user.profile,
|
||||
note_id,
|
||||
¬e_id,
|
||||
&reaction.id,
|
||||
&primary_recipient,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue