Skip to content

Commit

Permalink
Fixed crash at startup (#40)
Browse files Browse the repository at this point in the history
* Fixed crash at startup

* chore: appease clippy

---------

Co-authored-by: mautam <[email protected]>
  • Loading branch information
Syudagye and mautamu authored Apr 11, 2024
1 parent 3274ad2 commit 9c8cc3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lefthk/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ pub fn load() -> Result<Config> {
let path = BaseDirectories::with_prefix(lefthk_core::LEFTHK_DIR_NAME)?;
fs::create_dir_all(path.get_config_home())?;
let file_name = path.place_config_file("config.ron")?;
if Path::new(&file_name).exists() {
let contents = fs::read_to_string(file_name)?;
Config::try_from(contents)?;
if !Path::new(&file_name).exists() {
return Err(LeftError::NoConfigFound);
}
Err(LeftError::NoConfigFound)
let contents = fs::read_to_string(file_name)?;
Config::try_from(contents)
}

fn propagate_exit_chord(chords: Vec<&mut Keybind>, exit_chord: &Option<Keybind>) {
Expand Down

0 comments on commit 9c8cc3c

Please sign in to comment.