Overview
| Comment: | fix error a little |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
4c144972c090a29baaa9d56fa4c9942b |
| User & Date: | arcade on 2026-01-02 07:47:54.418 |
| Other Links: | manifest | tags |
Context
|
2026-01-02
| ||
| 12:10 | add github workflows check-in: a39355c1fc user: arcade tags: trunk | |
| 07:47 | fix error a little check-in: 4c144972c0 user: arcade tags: trunk | |
|
2026-01-01
| ||
| 13:18 | add api_gateway, switch to smol check-in: dc7c43b010 user: arcade tags: trunk, v0.5.2 | |
Changes
Modified Cargo.lock
from [e99dfc370d]
to [07d8f772ae].
| ︙ | |||
3744 3745 3746 3747 3748 3749 3750 | 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 | - + - + | "proc-macro2", "quote", "syn", ] [[package]] name = "zmij" |
Modified src/core.rs
from [dbaaa2430e]
to [159dd8fde0].
| ︙ | |||
259 260 261 262 263 264 265 | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | - + - + |
owner_chat: ChatPeerId::from(owner),
..self.clone()
};
let source = {
let mut conn = self.db.begin().await.stack()?;
match conn.get_one(owner, source_id).await {
Ok(Some(source)) => source.to_string(),
|
| ︙ |
Modified src/main.rs
from [3cb558ff1b]
to [527f3dd3d4].
| ︙ | |||
11 12 13 14 15 16 17 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | - + |
use stacked_errors::{
Result,
StackableErr,
};
use tgbot::handler::LongPoll;
fn main () -> Result<()> {
|
| ︙ |