diff options
author | fxqnlr <[email protected]> | 2023-05-09 20:53:34 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2023-05-09 20:53:34 +0200 |
commit | d6415cf0e03dbb42c573a597d07ea1be5cd1fc44 (patch) | |
tree | be7a6a8694b00e1702481d158638ae7cf3ba78e1 /src/commands/list.rs | |
parent | 9063a041f6b2e72f6e4a861c77ac16065dd5378b (diff) | |
download | modlist-d6415cf0e03dbb42c573a597d07ea1be5cd1fc44.tar modlist-d6415cf0e03dbb42c573a597d07ea1be5cd1fc44.tar.gz modlist-d6415cf0e03dbb42c573a597d07ea1be5cd1fc44.zip |
added list check on default change
Diffstat (limited to 'src/commands/list.rs')
-rw-r--r-- | src/commands/list.rs | 8 |
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 | ||
34 | pub fn list_change(config: Cfg, id: String) -> MLE<()> { | 34 | pub 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 | } |