Revert "fix: instatiate RootPCloudFolder with path /"

This reverts commit c93a6b289de6817f693fe00ef1f47130baeca4c6.
This commit is contained in:
Manuel Jenny 2021-03-16 15:40:04 +01:00
parent 85d920da19
commit c29801f132
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;
}