From 40160ecdc28e4baaf81152536beeaa7819cc5947 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Tue, 22 Sep 2009 08:21:01 +0200 Subject: [PATCH] ignore when dropping file on a contact that doesn't support file transfer. Fixes #4058 --- src/roster_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/roster_window.py b/src/roster_window.py index d00361c70f..bc4b432db3 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -3988,6 +3988,8 @@ class RosterWindow: return c_dest = gajim.contacts.get_contact_with_highest_priority(account_dest, jid_dest) + if not gajim.capscache.is_supported(c_dest, NS_FILE): + return uri = data.strip() uri_splitted = uri.split() # we may have more than one file dropped try: -- GitLab