Skip to content

Commit

Permalink
Merge pull request #337 from hrdl-github/fix-header
Browse files Browse the repository at this point in the history
Fix Unidentified-Access-Key header
  • Loading branch information
rubdos authored Oct 21, 2024
2 parents 9540bc0 + a0bd8c1 commit 158757c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/websocket/sender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl SignalWebSocket {
let request = WebSocketRequestMessage::new(Method::PUT)
.path(format!("/v1/messages/{}", messages.destination))
.header(
"Unidentified-Access-Key:{}",
"Unidentified-Access-Key",
BASE64_RELAXED.encode(&access.key),
)
.json(&messages)?;
Expand Down

0 comments on commit 158757c

Please sign in to comment.