chore: add TODO regarding filename encoding

This commit is contained in:
Manuel Jenny 2021-03-25 20:33:46 +01:00
parent e1bc82b89a
commit 6217c42440
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18

View File

@ -224,6 +224,7 @@ class PCloudImpl {
} }
}; };
//TODO: remove filename encoding as soon as it is fixed API wise: https://github.com/pCloud/pcloud-sdk-java/issues/13
String filename = file.getName(); String filename = file.getName();
String encodedFilename = URLEncoder.encode(filename, UTF_8); String encodedFilename = URLEncoder.encode(filename, UTF_8);