Check that config is valid before saving (#2152)

This commit is contained in:
Nutomic 2022-03-24 16:23:12 +00:00 committed by GitHub
parent b406342a14
commit 83e996111e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,6 +88,9 @@ impl Settings {
}
pub fn save_config_file(data: &str) -> Result<String, LemmyError> {
// check that the config is valid
from_str::<Settings>(data)?;
fs::write(Settings::get_config_location(), data)?;
// Reload the new settings