From c0dd691b823478b4ba9e65283ade97e2d576bbf2 Mon Sep 17 00:00:00 2001 From: Louis-Francis Ratté-Boulianne Date: Thu, 12 Aug 2010 15:01:22 -0400 Subject: msnp18: switch protocol to version 18 --- butterfly/connection.py | 5 +++-- 1 file 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) -- cgit v1.2.3