return cleaner error when response not expected

This commit is contained in:
Emil Lerch 2023-08-29 11:30:21 -07:00
parent bd72bbb1f3
commit 48fc41c4b8
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -479,6 +479,7 @@ pub fn Request(comptime request_action: anytype) type {
const xml_options = xml_shaper.ParseOptions{ .allocator = options.client.allocator }; const xml_options = xml_shaper.ParseOptions{ .allocator = options.client.allocator };
var body: []const u8 = result.body; var body: []const u8 = result.body;
var free_body = false; var free_body = false;
if (result.body.len < 20) return error.UnexpectedResponse;
if (std.mem.lastIndexOf(u8, result.body[result.body.len - 20 ..], "Response>") == null and if (std.mem.lastIndexOf(u8, result.body[result.body.len - 20 ..], "Response>") == null and
std.mem.lastIndexOf(u8, result.body[result.body.len - 20 ..], "Result>") == null) std.mem.lastIndexOf(u8, result.body[result.body.len - 20 ..], "Result>") == null)
{ {