Skip to content

Commit

Permalink
Fix data save commands backtrace (Astrabit-ST#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
LordPatate authored Aug 15, 2024
1 parent 487cbdf commit 0cb37c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/data_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ impl Data {
.wrap_err("While serializing .luminol/commands")?;
filesystem
.write(".luminol/commands", command_db)
.wrap_err("While writing .luminol/config")?;
.wrap_err("While writing .luminol/commands")?;

// even though Ini uses fmt::write internally, it provides no easy way to write to a string.
// so we need to open a file instead
Expand Down

0 comments on commit 0cb37c6

Please sign in to comment.