summaryrefslogtreecommitdiff
path: root/src/commands/list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/list.rs')
-rw-r--r--src/commands/list.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/commands/list.rs b/src/commands/list.rs
index 13176f4..8ec662d 100644
--- a/src/commands/list.rs
+++ b/src/commands/list.rs
@@ -2,9 +2,9 @@ use crate::{
2 config::Cfg, 2 config::Cfg,
3 db::{ 3 db::{
4 config_change_current_list, config_get_current_list, lists_get, lists_insert, lists_remove, 4 config_change_current_list, config_get_current_list, lists_get, lists_insert, lists_remove,
5 lists_version, 5 lists_version, lists_get_all_ids,
6 }, 6 },
7 error::MLE, 7 error::{MLE, MLError, ErrorType},
8 update, Modloader, 8 update, Modloader,
9}; 9};
10 10
@@ -32,7 +32,9 @@ pub fn list_add(
32} 32}
33 33
34pub fn list_change(config: Cfg, id: String) -> MLE<()> { 34pub fn list_change(config: Cfg, id: String) -> MLE<()> {
35 //TODO check if list exists 35 if lists_get_all_ids(config.clone())?.into_iter().find(|l| l == &id).is_none() {
36 return Err(MLError::new(ErrorType::ArgumentError, "List not found"));
37 };
36 println!("Change default list to: {}", id); 38 println!("Change default list to: {}", id);
37 config_change_current_list(config, id) 39 config_change_current_list(config, id)
38} 40}