mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 20:29:10 +03:00
Fix warning as per #3901
This commit is contained in:
parent
381fc75d7e
commit
b6d3689475
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ public class BugReporterMultipartBody extends RequestBody {
|
|||
}
|
||||
|
||||
public static Part createFormData(String name, String value) {
|
||||
return createFormData(name, null, RequestBody.create(null, value));
|
||||
return createFormData(name, null, RequestBody.create(value, null));
|
||||
}
|
||||
|
||||
public static Part createFormData(String name, String filename, RequestBody body) {
|
||||
|
|
Loading…
Add table
Reference in a new issue