diff options
author | fiaxh <git@mx.ax.lt> | 2018-01-05 18:25:25 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2018-01-06 14:02:32 +0100 |
commit | 2e041e2984fa303034a9736918631935c52ac03a (patch) | |
tree | 2730ce6599bbfcf47e45a58b5907cf25b9613ab4 /xmpp-vala/src | |
parent | a8cc94c188c085e8788e072017ef21d7b7812a55 (diff) | |
download | dino-2e041e2984fa303034a9736918631935c52ac03a.tar.gz dino-2e041e2984fa303034a9736918631935c52ac03a.zip |
Tab completion: Case insensitive, handle spaces
Diffstat (limited to 'xmpp-vala/src')
-rw-r--r-- | xmpp-vala/src/core/xmpp_stream.vala | 2 |
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) { |