mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Check that config is valid before saving (#2152)
This commit is contained in:
parent
b406342a14
commit
83e996111e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user