Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Finish v1.1-r24
Browse files Browse the repository at this point in the history
  • Loading branch information
ufna committed Aug 3, 2018
2 parents 8370f5e + 0d3b1fc commit 7bb2ccd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Key features:

Check the [Wiki](https://hiazma.atlassian.net/wiki/display/VAR) for plugin usage examples and installation notes.

Current version: **1.1 R 23** (UE 4.20)
Current version: **1.1 R 24** (UE 4.20)

![SCREENSHOT](SCREENSHOT.jpg)

Expand Down
2 changes: 1 addition & 1 deletion Source/VaRestPlugin/Private/VaRestRequestJSON.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ void UVaRestRequestJSON::OnProcessRequestComplete(FHttpRequestPtr Request, FHttp
ResponseSize = ResponseJsonObj->DeserializeFromUTF8Bytes((const ANSICHAR*) Bytes.GetData(), Bytes.Num());

// Decide whether the request was successful
bIsValidJsonResponse = bWasSuccessful && ResponseJsonObj->GetRootObject().IsValid();
bIsValidJsonResponse = bWasSuccessful && (ResponseSize > 0);

if (!bIsValidJsonResponse)
{
Expand Down
4 changes: 2 additions & 2 deletions VaRestPlugin.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"FileVersion" : 3,

"FriendlyName" : "VaRest",
"Version" : 23,
"VersionName" : "1.1-r23",
"Version" : 24,
"VersionName" : "1.1-r24",
"CreatedBy" : "Vladimir Alyamkin",
"CreatedByURL" : "http://alyamkin.com",
"EngineVersion" : "4.20.0",
Expand Down

0 comments on commit 7bb2ccd

Please sign in to comment.