aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2018-01-05 18:25:25 +0100
committerfiaxh <git@mx.ax.lt>2018-01-06 14:02:32 +0100
commit2e041e2984fa303034a9736918631935c52ac03a (patch)
tree2730ce6599bbfcf47e45a58b5907cf25b9613ab4 /xmpp-vala
parenta8cc94c188c085e8788e072017ef21d7b7812a55 (diff)
downloaddino-2e041e2984fa303034a9736918631935c52ac03a.tar.gz
dino-2e041e2984fa303034a9736918631935c52ac03a.zip
Tab completion: Case insensitive, handle spaces
Diffstat (limited to 'xmpp-vala')
-rw-r--r--xmpp-vala/src/core/xmpp_stream.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/core/xmpp_stream.vala b/xmpp-vala/src/core/xmpp_stream.vala
index 6d4b9c64..6c364e80 100644
--- a/xmpp-vala/src/core/xmpp_stream.vala
+++ b/xmpp-vala/src/core/xmpp_stream.vala
@@ -59,7 +59,7 @@ public class XmppStream {
if (best_provider != null) {
stream = yield best_provider.connect(this);
}
- if (stream != null) {
+ if (stream == null) {
stream = yield (new SocketClient()).connect_async(new NetworkService("xmpp-client", "tcp", this.remote_name));
}
if (stream == null) {