From 712b39bba7401d0bf803439cd895624fca411161 Mon Sep 17 00:00:00 2001
From: Jean-Marie Traissard <jim@lapin.org>
Date: Tue, 9 Jan 2007 22:24:41 +0000
Subject: [PATCH] Skip self in nick completion

---
 src/groupchat_control.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/groupchat_control.py b/src/groupchat_control.py
index 2a77a3b769..197520527e 100644
--- a/src/groupchat_control.py
+++ b/src/groupchat_control.py
@@ -1520,6 +1520,7 @@ class GroupchatControl(ChatControlBase):
 				self.nick_hits = [] # clear the hit list
 				list_nick = gajim.contacts.get_nick_list(self.account,
 									self.room_jid)
+				list_nick.remove(self.nick) # Skip self
 				for nick in list_nick:
 					if nick.lower().startswith(begin.lower()):
 						# the word is the begining of a nick
-- 
GitLab