diff options
author | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2010-08-12 15:01:22 -0400 |
---|---|---|
committer | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2010-08-13 00:30:25 -0400 |
commit | c0dd691b823478b4ba9e65283ade97e2d576bbf2 (patch) | |
tree | 74045529064fb803c49e0e835d700fb2ee41757c | |
parent | 76ece6f229ed87e997c6fc1248171702cdead5a8 (diff) |
msnp18: switch protocol to version 18
-rw-r--r-- | butterfly/connection.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/butterfly/connection.py b/butterfly/connection.py index 3f0d18f..30d8366 100644 --- a/butterfly/connection.py +++ b/butterfly/connection.py @@ -140,10 +140,11 @@ class ButterflyConnection(telepathy.server.Connection, if use_http: self._tried_http = True self._msn_client = papyon.Client(self._server, self._proxies, - papyon.transport.HTTPPollConnection) + papyon.transport.HTTPPollConnection, 18) else: self._tried_http = False - self._msn_client = papyon.Client(self._server, self._proxies) + self._msn_client = papyon.Client(self._server, self._proxies, + version=18) papyon.event.ClientEventInterface.__init__(self, self._msn_client) papyon.event.InviteEventInterface.__init__(self, self._msn_client) |