Fix potential crashes

This commit is contained in:
stom79 2018-09-15 14:05:21 +02:00
parent 29449d6168
commit e2bfbc0ab2
1 changed files with 3 additions and 7 deletions

View File

@ -1646,15 +1646,11 @@ public class HttpsConnection {
}
private String converToString(InputStream inputStream) throws IOException {
BufferedReader r = new BufferedReader(new InputStreamReader(inputStream));
StringBuilder total = new StringBuilder(inputStream.available());
String line;
while ((line = r.readLine()) != null) {
total.append(line).append('\n');
}
return total.toString();
java.util.Scanner s = new java.util.Scanner(inputStream).useDelimiter("\\A");
return s.hasNext() ? s.next() : "";
}
int getActionCode() {
if( Helper.getLiveInstanceWithProtocol(context).startsWith("https://")) {
try {