fix: instatiate RootPCloudFolder with path /

This commit is contained in:
Manuel Jenny 2021-03-16 15:23:37 +01:00
parent 05b95cf5da
commit 85d920da19
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18

View File

@ -9,7 +9,7 @@ class RootPCloudFolder extends PCloudFolder {
private static final long rootFolderId = 0L;
public RootPCloudFolder(PCloudCloud cloud) {
super(null, rootFolderId, "", "");
super(null, rootFolderId, "", "/");
this.cloud = cloud;
}