mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-21 23:47:30 +00:00
formatting
This commit is contained in:
parent
6b18f66e19
commit
acffda1ab8
@ -59,19 +59,19 @@ public class MmsCommunication {
|
||||
throw new MmsException("No carrier MMS information available.");
|
||||
|
||||
do {
|
||||
String mmsc = cursor.getString(cursor.getColumnIndexOrThrow("mmsc"));
|
||||
String proxy = cursor.getString(cursor.getColumnIndexOrThrow("mmsproxy"));
|
||||
String port = cursor.getString(cursor.getColumnIndexOrThrow("mmsport"));
|
||||
String mmsc = cursor.getString(cursor.getColumnIndexOrThrow("mmsc"));
|
||||
String proxy = cursor.getString(cursor.getColumnIndexOrThrow("mmsproxy"));
|
||||
String port = cursor.getString(cursor.getColumnIndexOrThrow("mmsport"));
|
||||
|
||||
if (mmsc != null && !mmsc.equals(""))
|
||||
return new MmsConnectionParameters(mmsc, proxy, port);
|
||||
if (mmsc != null && !mmsc.equals(""))
|
||||
return new MmsConnectionParameters(mmsc, proxy, port);
|
||||
|
||||
} while (cursor.moveToNext());
|
||||
|
||||
throw new MmsException("No carrier MMS information available.");
|
||||
} finally {
|
||||
if (cursor != null)
|
||||
cursor.close();
|
||||
cursor.close();
|
||||
}
|
||||
}
|
||||
|
||||
@ -155,7 +155,7 @@ public class MmsCommunication {
|
||||
|
||||
public int getPort() {
|
||||
if (port == null || port.trim().length() == 0)
|
||||
return 80;
|
||||
return 80;
|
||||
|
||||
return Integer.parseInt(port);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user