Opkman: Small bugfix.

git-svn-id: trunk@62682 -
This commit is contained in:
balazs 2020-02-27 12:14:43 +00:00
parent ab0b56c0f8
commit 5930969e12

View File

@ -285,7 +285,10 @@ begin
MS.Position := 0;
SetLength(JSON, MS.Size);
MS.Read(Pointer(JSON)^, Length(JSON));
SuccessfullyLoaded := SerializablePackages.JSONToPackages(JSON);
try
SuccessfullyLoaded := SerializablePackages.JSONToPackages(JSON);
except
end;
if SuccessfullyLoaded then
begin
DoOnJSONDownloadCompleted(Self, JSON, etNone);