Skip to content

Commit

Permalink
hotfix: contribution message
Browse files Browse the repository at this point in the history
  • Loading branch information
notdodo committed Oct 20, 2024
1 parent cba6ab0 commit cb0210d
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions app/bot/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,14 @@ async fn lambda_handler(event: LambdaEvent<Value>) -> Result<Value, LambdaError>
Ad esempio 'Cesena', 'Lavino di Sopra' o 'S. Carlo'. \n
Se non sai quale cercare prova con /stazioni".to_string(),
};
bot.send_message(msg.chat.id, text).await?;
let mut message = text.clone();
if fastrand::choose_multiple(0..10, 1)[0] == 8 {
message = format!("{}\n\nContribuisci al progetto per mantenerlo attivo e sviluppare nuove funzionalità tramite una donazione: https://buymeacoffee.com/d0d0", text);
}
if fastrand::choose_multiple(0..50, 1)[0] == 8 {
message = format!("{}\n\nEsplora o contribuisci al progetto open-source per sviluppare nuove funzionalità: https://github.com/notdodo/erfiume_bot", text);
}
bot.send_message(msg.chat.id, message).await?;
respond(())
}));

Expand Down Expand Up @@ -159,15 +166,7 @@ async fn simple_commands_handler(
}
};

let mut message = text.clone();
if fastrand::choose_multiple(0..10, 1)[0] == 8 {
message = format!("{}\n\nContribuisci al progetto per mantenerlo attivo e sviluppare nuove funzionalità tramite una donazione: https://buymeacoffee.com/d0d0", text);
}
if fastrand::choose_multiple(0..50, 1)[0] == 8 {
message = format!("{}\n\nEsplora o contribuisci al progetto open-source per sviluppare nuove funzionalità: https://github.com/notdodo/erfiume_bot", text);
}

bot.send_message(msg.chat.id, escape_markdown_v2(&message))
bot.send_message(msg.chat.id, escape_markdown_v2(&text))
.link_preview_options(LinkPreviewOptions {
is_disabled: true,
url: None,
Expand Down

0 comments on commit cb0210d

Please sign in to comment.