Overview
| Comment: | fix debug part - add comment, add local uses |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | release | v0.5.8 |
| Files: | files | file ages | folders |
| SHA3-256: |
2f0b8bb368dfa0c80c5b3988c2767281 |
| User & Date: | arcade on 2026-09-14 15:48:41.293 |
| Other Links: | branch diff | manifest | tags |
Context
|
2026-09-14
| ||
| 15:48 | fix debug part - add comment, add local uses leaf check-in: 2f0b8bb368 user: arcade tags: release, v0.5.8 | |
|
2026-09-13
| ||
| 12:29 | bump, update workflow check-in: dae6672b4d user: arcade tags: release, v0.5.8 | |
Changes
Modified src/core.rs
from [7f927a15c1]
to [336a4eff95].
| ︙ | |||
227 228 229 230 231 232 233 | 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | + + + - - + + + + + + - - + + |
let mut posts: BTreeMap<DateTime<chrono::FixedOffset>, Post> = BTreeMap::new();
let mut builder = self.http_client.get(&source.url);
if let Some(last_scrape) = last_scrape {
builder = builder.header(LAST_MODIFIED, last_scrape.to_rfc2822());
};
let response = builder.send().await.stack()?;
// Print debug output for each response processed to track how expires
// are handled
|
| ︙ |