fix typo
This commit is contained in:
parent
82402f4d16
commit
e8069d93cc
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ pub async fn get_channel_info(
|
|||
/// Récupère l'ID du salon renseigné grâce à son nom en faisant une requête à l'API de Mattermost
|
||||
#[allow(dead_code)] // je comprends pas pourquoi j'ai besoin de mettre ça, parce que j'utilises le code en dessous...
|
||||
pub async fn channel_id_by_name(api: &mattermost_api::client::Mattermost, salon: String) -> String {
|
||||
println!("\nTentative de récupération de l'équipe {}...", salon);
|
||||
println!("\nRécupération de l'ID du salon {}...", salon);
|
||||
match get_channel_info(api).await {
|
||||
Ok(channels) => {
|
||||
for channel in &channels {
|
||||
|
|
Reference in a new issue