|
|
|
@ -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| { |
|
|
|
|