mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-04 04:24:00 +01:00
fmt
This commit is contained in:
parent
fd69ac621c
commit
1939e62814
1 changed files with 1 additions and 3 deletions
|
@ -137,9 +137,7 @@ where
|
||||||
let x_matrix = match request
|
let x_matrix = match request
|
||||||
.headers()
|
.headers()
|
||||||
.get_one("Authorization")
|
.get_one("Authorization")
|
||||||
.and_then(|s|
|
.and_then(|s| s.get(9..)) // Split off "X-Matrix " and parse the rest
|
||||||
// Split off "X-Matrix " and parse the rest
|
|
||||||
s.get(9..))
|
|
||||||
.map(|s| {
|
.map(|s| {
|
||||||
s.split_terminator(',')
|
s.split_terminator(',')
|
||||||
.map(|field| {
|
.map(|field| {
|
||||||
|
|
Loading…
Reference in a new issue