taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

commit 1b0e2926888e016fccd878efeb1cf5da29500d73
parent a9964af72aea4847ec691a1677211a3bd7c109f7
Author: Antoine A <>
Date:   Wed, 18 Feb 2026 09:41:54 +0100

cyclos: fix crash

Diffstat:
Mcommon/http-client/src/builder.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/http-client/src/builder.rs b/common/http-client/src/builder.rs @@ -167,7 +167,7 @@ impl Req { .header(header::CACHE_CONTROL, HeaderValue::from_static("no-cache")); if let Some(id) = &client.last_event_id { self = self.header( - HeaderName::from_static("last-event-iD"), + HeaderName::from_static("last-event-id"), HeaderValue::from_str(id).unwrap(), ); }