diff options
Diffstat (limited to 'kittybox-rs/src/frontend')
-rw-r--r-- | kittybox-rs/src/frontend/onboarding.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kittybox-rs/src/frontend/onboarding.rs b/kittybox-rs/src/frontend/onboarding.rs index 9027201..08a05ee 100644 --- a/kittybox-rs/src/frontend/onboarding.rs +++ b/kittybox-rs/src/frontend/onboarding.rs @@ -56,7 +56,7 @@ async fn onboard<D: Storage + 'static>( // Create a user to pass to the backend // At this point the site belongs to nobody, so it is safe to do let user = - crate::indieauth::User::new(user_uid.as_str(), "https://kittybox.fireburn.ru/", "create"); + crate::tokenauth::User::new(user_uid.as_str(), "https://kittybox.fireburn.ru/", "create"); if data.user["type"][0] != "h-card" || data.first_post["type"][0] != "h-entry" { return Err(FrontendError::with_code( |