We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae5a84 commit 8cd3c92Copy full SHA for 8cd3c92
plugin/platforms/android/java/com/nativescript/https/OkHttpResponse.java
@@ -17,6 +17,7 @@
17
18
import okhttp3.ResponseBody;
19
import okhttp3.Response;
20
+import okhttp3.Headers;
21
22
public class OkHttpResponse {
23
private final static String TAG = "OkHttpResponse";
@@ -457,7 +458,7 @@ public void run() {
457
458
public static int getStatusCode(Response response) {
459
return response.code();
460
}
-
461
+
462
public static String getMessage(Response response) {
463
return response.message();
464
0 commit comments