cargo fmt
Some checks failed
Build / check (push) Successful in 11m49s
Build / build (push) Successful in 12m51s
Build / docs (push) Has been cancelled

This commit is contained in:
2025-11-10 23:50:55 +09:00
parent 7514d5e738
commit c2dcd40442

View File

@@ -75,7 +75,10 @@ impl OwnerValidationError {
pub fn to_error_message(self, name: &str, db_or_user: DbOrUser) -> String {
let user = UnixUser::from_enviroment();
let UnixUser { username, mut groups } = user.unwrap_or(UnixUser {
let UnixUser {
username,
mut groups,
} = user.unwrap_or(UnixUser {
username: "???".to_string(),
groups: vec![],
});