Skip to content
Snippets Groups Projects
Commit 97806837 authored by nkour's avatar nkour
Browse files

if span with no id, we have an anonymous tag. make sure we do not TB. fix #2856

parent 02285f0a
No related branches found
No related tags found
No related merge requests found
......@@ -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 'url' in tag_name or 'mail' in tag_name:
if tag_name is not None and 'url' in tag_name or 'mail' in tag_name:
return True # we block normal context menu
# we check if sth was selected and if it was we assign
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment