Skip to content

Commit

Permalink
Update ConnectionProcessor.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis authored Jan 24, 2024
1 parent 0d677d2 commit a3ec2b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private enum RequestResult {
String[] kv = key.split("=");
approximateDateSize += 4 + boundary.length(); // 4 is the length of the static parts of the entry

String param = UtilsNetworking.urlDecodeString(kv[0]);
String param = kv[0];
String value = UtilsNetworking.urlDecodeString(kv[1]);
if (param.equals(ModuleUserProfile.PICTURE_PATH_KEY)) {
approximateDateSize += addFileMultipart(output, writer, value, boundary);
Expand Down

0 comments on commit a3ec2b4

Please sign in to comment.