summaryrefslogtreecommitdiff
path: root/src/db.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.rs b/src/db.rs
index c5a972f..06c2459 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -361,7 +361,7 @@ pub fn lists_insert(config: Cfg, id: String, mc_version: String, mod_loader: Mod
361 Ok(()) 361 Ok(())
362} 362}
363 363
364pub fn lists_remove(config: Cfg, id: String) -> Result<(), Box<dyn std::error::Error>> { 364pub fn lists_remove(config: Cfg, id: String) -> MLE<()> {
365 let data = devdir(format!("{}/data.db", config.data).as_str()); 365 let data = devdir(format!("{}/data.db", config.data).as_str());
366 let connection = Connection::open(data)?; 366 let connection = Connection::open(data)?;
367 367