Skip to content
Snippets Groups Projects
Commit 711c2863 authored by Maaz Ahmed's avatar Maaz Ahmed
Browse files

fix: query helper func should use the new into_result method

parent 4c87779c
No related branches found
No related tags found
No related merge requests found
Pipeline #14705 passed with stages
in 1 minute and 34 seconds
......@@ -254,7 +254,7 @@ async fn query<Q: IntoQuery>(
builder = builder.timeout(*timeout);
}
match method {
Method::Get => builder.get().await.into_qry_result(),
Method::Post => builder.post().await.into_qry_result(),
Method::Get => builder.get().await.into_result(),
Method::Post => builder.post().await.into_result(),
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment