move config check into config load function

This commit is contained in:
Charles Hall 2024-09-24 17:18:22 -07:00
parent 75ef57e0ce
commit e9caf228b3
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
3 changed files with 11 additions and 6 deletions

View file

@ -438,10 +438,16 @@ where
let path = path.as_ref();
toml::from_str(
let config: Config = toml::from_str(
&tokio::fs::read_to_string(path)
.await
.map_err(|e| Error::Read(e, path.to_owned()))?,
)
.map_err(|e| Error::Parse(e, path.to_owned()))
.map_err(|e| Error::Parse(e, path.to_owned()))?;
if config.registration_token.as_deref() == Some("") {
return Err(Error::RegistrationTokenEmpty);
}
Ok(config)
}