Overview
Comment: | fix parameter parsing |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cab82b7ff4131a780ac03155618eb9f6 |
User & Date: | arcade on 2022-03-23 16:26:50.356 |
Other Links: | manifest | tags |
Context
2022-04-19
| ||
07:00 | 0.2.11: command parsing fix and bump check-in: 6e8d042b97 user: arcade tags: trunk | |
2022-03-23
| ||
16:26 | fix parameter parsing check-in: cab82b7ff4 user: arcade tags: trunk | |
2022-03-15
| ||
14:00 | move to async, cut deps a little check-in: cb86e770f9 user: arcade tags: trunk | |
Changes
Modified src/command.rs
from [1edeb585ee]
to [4583236e80].
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | + - - + + + - - + + - - - + + - | core.send(msg, Some(sender), None).await?; Ok(()) } pub async fn update(core: &Core, sender: telegram_bot::UserId, command: Vec<&str>) -> Result<()> { let mut source_id: Option<i32> = None; let at_least = "Requires at least 3 parameters."; let mut i_command = command.iter(); |
︙ |