Skip to content

Commit

Permalink
fix: println instead of print
Browse files Browse the repository at this point in the history
  • Loading branch information
CutestNekoAqua committed Aug 3, 2024
1 parent 32c3dad commit 8ba0dfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lysand/conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ pub async fn local_db_user_from_name(name: String) -> anyhow::Result<entities::u
}

pub async fn db_user_from_url(url: Url) -> anyhow::Result<entities::user::Model> {
print!("Fetching user from domain: {}", url.domain().unwrap());
println!("Fetching user from domain: {}", url.domain().unwrap());
if !url.domain().eq(&Some(LYSAND_DOMAIN.as_str()))
&& !url.domain().eq(&Some(API_DOMAIN.as_str()))
{
Expand Down

0 comments on commit 8ba0dfe

Please sign in to comment.