Fix the config not being initialized on fresh startup
1 files changed, 1 insertions(+), 1 deletions(-) M app/src/app.rs
M app/src/app.rs => app/src/app.rs +1 -1
@@ 23,7 23,7 @@ impl App { pub(crate) fn new() -> Result<Self, Box<dyn std::error::Error>> { let config = Config::get_or_default()?; - let shelf = Shelf::open(config.db())?; + let shelf = Shelf::open(config.db()).unwrap_or_default(); let cli_commands = get_cli_commands();