Using your UCloudStorageDemo to upload file to Box always returns nil, even with successful upload to Box

There is no way to tell if file failed upload to BoxNet as result of upload is always nil. Problem can be seen in your UCloudStorageDemo:

var nci: TCloudItem;
begin
nci := Storage.Upload(ci, fn);
if nci = nil then showmessage('always returns nil here')
else
showmessage('Never gets here');
end;

Note: Using TMS VCL Cloud Pack version 4.2.2.1

Discovered the problem was mixing old source with new source code. Works fine now with the newest code. Thanks anyway...