Small bug in

I would like to suggest a small fix to CloudAdvTerrViewAdapter that will prevent an AV if the base folder of the connected server is empty (for instance, if you use a sandboxed app in DropBox)


---
 TMS VCL Cloud Pack/CloudAdvTreeviewAdapter.pas | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/TMS VCL Cloud Pack/CloudAdvTreeviewAdapter.pas b/TMS VCL Cloud Pack/CloudAdvTreeviewAdapter.pas
index af1ddbc..be06629 100644
--- a/TMS VCL Cloud Pack/CloudAdvTreeviewAdapter.pas
+++ b/TMS VCL Cloud Pack/CloudAdvTreeviewAdapter.pas
@@ -114,6 +114,8 @@ var
     end;
   end;
 begin
+  if not Assigned(Drive) then
+     exit();
   for i := 0 to Drive.Count - 1 do
   begin
     tn := ATreeView.AddNode(ParentNode);
-- 
2.16.2.windows.1

Hi,


Thank you for your suggestion.
We'll investigate if this change can be implemented in the next release of TMS VCL Cloud Pack.