···275275 )
276276 .await?;
277277278278- println!("Site is now updated. Live at {}", utils::site_handle(config.user));
278278+ println!(
279279+ "Site is now updated. Live at {}",
280280+ utils::site_handle(config.user)
281281+ );
279282 } else {
280283 let oauth = oauth::client::OAuthClient::with_memory_store();
281284 let session = oauth
···311314 )
312315 .await?;
313316314314- println!("Site is now updated. Live at {}", utils::site_handle(config.user));
317317+ println!(
318318+ "Site is now updated. Live at {}",
319319+ utils::site_handle(config.user)
320320+ );
315321 };
316322317323 Ok(())
+4-2
upload/src/utils.rs
···7070 let method = user[1];
7171 let did = user[2];
7272 format!("https://{did}.did-{method}.atcities.dev/")
7373- } else { format!("https://{user}.atcities.dev/") }
7474-}7373+ } else {
7474+ format!("https://{user}.atcities.dev/")
7575+ }
7676+}