From 0c0fd1b3233b0fa87e39a581e45c5800f9c3c94d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Br=C3=B6tzmann?= Date: Wed, 6 May 2020 15:31:07 +0200 Subject: [PATCH] [tictactoe] Adapt to changes in Gajim --- tictactoe/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tictactoe/plugin.py b/tictactoe/plugin.py index a456c58..f0e8f09 100644 --- a/tictactoe/plugin.py +++ b/tictactoe/plugin.py @@ -183,8 +183,8 @@ class TictactoePlugin(GajimPlugin): if game_invite: game = game_invite.getTag('game') if game and game.getAttr('var') == NS_GAMES_TICTACTOE: - session = obj.conn.make_new_session(obj.fjid, obj.thread_id, - cls=TicTacToeSession) + session = obj.conn.make_new_session( + obj.fjid, obj.properties.thread, cls=TicTacToeSession) self.show_request_dialog(obj, session)