Add error log for invalid preferredUsername

pull/1129/head
Kitaiti Makoto 1 year ago
parent 85cacf4239
commit e746a0b03f

@ -381,6 +381,7 @@ impl FromId<DbConn> for Blog {
.ok_or(Error::MissingApProperty)?
.to_string();
if name.contains(&['<', '>', '&', '@', '\'', '"', ' ', '\t'][..]) {
tracing::error!("preferredUsername includes invalid character(s): {}", &name);
return Err(Error::InvalidValue);
}
(

@ -937,6 +937,7 @@ impl FromId<DbConn> for User {
.to_string();
if username.contains(&['<', '>', '&', '@', '\'', '"', ' ', '\t'][..]) {
tracing::error!("preferredUsername includes invalid character(s): {}", &username);
return Err(Error::InvalidValue);
}

Loading…
Cancel
Save