1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 21:02:55 +00:00

Fixed array serialization support

This commit is contained in:
Jkorf
2022-03-04 10:37:22 +01:00
parent 42f95243d9
commit 434d9e3af6
2 changed files with 24 additions and 5 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ namespace CryptoExchange.Net
}
// Add the auth parameters to the uri, start with a new URI to be able to sort the parameters including the auth parameters
uri = uri.SetParameters(uriParameters);
uri = uri.SetParameters(uriParameters, arraySerialization);
var request = RequestFactory.Create(method, uri, requestId);
request.Accept = Constants.JsonContentHeader;