taler-rust

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

commit a9964af72aea4847ec691a1677211a3bd7c109f7
parent 08e85369319854b88c7b73153edfdb4afea23aa4
Author: Antoine A <>
Date:   Sun, 15 Feb 2026 19:12:22 +0100

cyclos: fix sse

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(), ); }