Skip to content

Commit

Permalink
fixing dotless i (0x131) problem
Browse files Browse the repository at this point in the history
a temporary workaround about the issue joltup#573
  • Loading branch information
eczmustafa authored Jan 25, 2022
1 parent dcbde6f commit 24727db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/src/main/java/com/RNFetchBlob/RNFetchBlobReq.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ else if (value.equalsIgnoreCase("utf8"))
responseFormat = ResponseFormat.UTF8;
}
else {
builder.header(key.toLowerCase(), value);
mheaders.put(key.toLowerCase(), value);
builder.header(key.toLowerCase().replace("ı","i"), value);
mheaders.put(key.toLowerCase().replace("ı","i"), value);
}
}
}
Expand Down

0 comments on commit 24727db

Please sign in to comment.