Skip to content

Commit

Permalink
chore: avoid fuzzy searching garbage
Browse files Browse the repository at this point in the history
  • Loading branch information
notdodo committed Oct 20, 2024
1 parent 2450be0 commit 488e05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/bot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ async fn lambda_handler(event: LambdaEvent<Value>) -> Result<Value, LambdaError>
item.create_station_message().to_string()
}
}
Err(_) | Ok(None) => "Nessuna stazione trovata con la parola di ricerca. \n
Err(_) | Ok(None) => format!("Nessuna stazione trovata con la parola di ricerca '{}'. \n
Inserisci esattamente il nome che vedi dalla pagina https://allertameteo.regione.emilia-romagna.it/livello-idrometrico \n
Ad esempio 'Cesena', 'Lavino di Sopra' o 'S. Carlo'. \n
Se non sai quale cercare prova con /stazioni".to_string(),
Se non sai quale cercare prova con /stazioni", message),
};
let mut message = text.clone();
if fastrand::choose_multiple(0..10, 1)[0] == 8 {
Expand Down

0 comments on commit 488e05d

Please sign in to comment.