Encoded password

This commit is contained in:
CappielloAntonio 2022-01-11 16:25:11 +01:00
parent e71cb5fd5c
commit af93d233bd
4 changed files with 13 additions and 2 deletions

View file

@ -55,6 +55,10 @@ public class CustomGlideRequest {
url = url + "&size=" + size;
}
if (params.get("p") != null) {
url = url + "&p=" + params.get("p");
}
Log.d(TAG, "createUrl() " + url);
return url;