Fixed bug when displaying folder tree after the second level. Now the tree works...
[pithos-web-client] / src / gr / grnet / pithos / web / client / rest / GetRequest.java
index de5d2dd..4c0a7d1 100644 (file)
@@ -70,7 +70,7 @@ public abstract class GetRequest<T extends Resource> implements ScheduledCommand
                 public void onError(Request request, Throwable throwable) {
                     if (throwable instanceof RestException) {
                         if (((RestException) throwable).getHttpStatusCode() == 304 && cached != null){
-                            GWT.log("Using cache: " + cached.getUri(), null);
+                            GWT.log("Using cache: " + cached.toString(), null);
                             onSuccess(cached);
                             return;
                         }