mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-05 16:55:03 -05:00
fixed a bug in DNS helper code. fixes #1130
This commit is contained in:
parent
7eabdfd80f
commit
dbe170bd35
@ -121,7 +121,7 @@ public class DNSHelper {
|
||||
while (p > 0) {
|
||||
p -= s.get(i++).getPriority();
|
||||
}
|
||||
i--;
|
||||
if (i>0) i--;
|
||||
// remove is expensive, but we have only a few entries
|
||||
// anyway
|
||||
SRV srv = s.remove(i);
|
||||
|
@ -204,7 +204,7 @@ public class XmppConnection implements Runnable {
|
||||
&& "nosrv".equals(result.getString("error", null))) {
|
||||
socket = new Socket(account.getServer().getDomainpart(), 5222);
|
||||
} else {
|
||||
throw new IOException("timeout in dns");
|
||||
throw new IOException("unhandled exception in DNS resolver");
|
||||
}
|
||||
final OutputStream out = socket.getOutputStream();
|
||||
tagWriter.setOutputStream(out);
|
||||
|
Loading…
Reference in New Issue
Block a user