case insensitive header search
This commit is contained in:
parent
d0dd2507d4
commit
a3967b8652
|
@ -227,7 +227,7 @@ pub fn Request(comptime action: anytype) type {
|
||||||
// look at the return type
|
// look at the return type
|
||||||
var isJson: bool = undefined;
|
var isJson: bool = undefined;
|
||||||
for (response.headers) |h| {
|
for (response.headers) |h| {
|
||||||
if (std.mem.eql(u8, "Content-Type", h.name)) {
|
if (std.ascii.eqlIgnoreCase("Content-Type", h.name)) {
|
||||||
if (std.mem.startsWith(u8, h.value, "application/json")) {
|
if (std.mem.startsWith(u8, h.value, "application/json")) {
|
||||||
isJson = true;
|
isJson = true;
|
||||||
} else if (std.mem.startsWith(u8, h.value, "application/x-amz-json-1.0")) {
|
} else if (std.mem.startsWith(u8, h.value, "application/x-amz-json-1.0")) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user