diff options
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mod.rs b/src/frontend/mod.rs index a92d769..c698370 100644 --- a/src/frontend/mod.rs +++ b/src/frontend/mod.rs @@ -751,7 +751,7 @@ pub async fn onboarding_receiver<S: Storage>(mut req: Request<ApplicationState<S // post function is just to ensure that the posts will be syndicated // and inserted into proper feeds. Here, we don't have a need for this, // since the h-card is DIRECTLY accessible via its own URL. - backend.put_post(&hcard).await?; + backend.put_post(&hcard, me.as_str()).await?; for feed in body.feeds { let (_, feed) = crate::micropub::normalize_mf2( @@ -762,7 +762,7 @@ pub async fn onboarding_receiver<S: Storage>(mut req: Request<ApplicationState<S &user, ); - backend.put_post(&feed).await?; + backend.put_post(&feed, me.as_str()).await?; } // This basically puts the h-entry post through the normal creation process. |