diff --git a/Source/VaRest/Private/VaRestRequestJSON.cpp b/Source/VaRest/Private/VaRestRequestJSON.cpp index ab998d2d..cbb68f50 100644 --- a/Source/VaRest/Private/VaRestRequestJSON.cpp +++ b/Source/VaRest/Private/VaRestRequestJSON.cpp @@ -421,7 +421,7 @@ void UVaRestRequestJSON::ProcessRequest() HttpRequest->SetHeader(TEXT("Content-Type"), TEXT("application/json")); // Body is ignored for get requests, so we shouldn't place json into it even if it's empty - if(RequestVerb == EVaRestRequestVerb::GET) + if (RequestVerb == EVaRestRequestVerb::GET) { break; }