mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 03:36:39 +00:00
[bugfix] Add idempotency-key to allowed CORS headers (#1670)
This commit is contained in:
parent
9c209fe6e4
commit
b847af1dbd
|
@ -54,6 +54,11 @@ func CORS() gin.HandlerFunc {
|
|||
// needed to pass oauth bearer tokens
|
||||
"Authorization",
|
||||
|
||||
// Some clients require this; see:
|
||||
// - https://docs.joinmastodon.org/methods/statuses/#headers
|
||||
// - https://github.com/superseriousbusiness/gotosocial/issues/1664
|
||||
"Idempotency-Key",
|
||||
|
||||
// needed for websocket upgrade requests
|
||||
"Upgrade",
|
||||
"Sec-WebSocket-Extensions",
|
||||
|
|
Loading…
Reference in a new issue