From 5099ae35bb1ce164472658f7e9585172f72bf039 Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Sat, 6 Jan 2007 10:17:55 +0000
Subject: [PATCH] fix logic

---
 src/conversation_textview.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conversation_textview.py b/src/conversation_textview.py
index f595ad5213..6836293261 100644
--- a/src/conversation_textview.py
+++ b/src/conversation_textview.py
@@ -418,7 +418,7 @@ class ConversationTextview:
 		if tags: # we clicked on sth special (it can be status message too)
 			for tag in tags:
 				tag_name = tag.get_property('name')
-				if tag_name is not None and 'url' in tag_name or 'mail' in tag_name:
+				if tag_name is not None and tag_name in ('url', 'mail'):
 					return True # we block normal context menu
 
 		# we check if sth was selected and if it was we assign
-- 
GitLab