fix: add missing withUrl() for pCloud

This commit is contained in:
Manuel Jenny 2021-03-16 14:38:54 +01:00
parent faaec7a922
commit e2903820f7
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18

View File

@ -52,6 +52,7 @@ public class CloudEntityMapper extends EntityMapper<CloudEntity, Cloud> {
case PCLOUD:
return aPCloudCloud() //
.withId(entity.getId()) //
.withUrl(entity.getWebdavUrl()) //
.withAccessToken(entity.getAccessToken()) //
.withUsername(entity.getUsername()) //
.build();