Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Smith <mrdoctorwho@gmail.com>2016-12-25 16:43:27 +0300
committerJohn Smith <mrdoctorwho@gmail.com>2016-12-25 16:43:27 +0300
commit1642e16f72404756c1dfc93cee42b25b03660b21 (patch)
tree9227b8277fc69d82f324875fc646b7072dbbdaa4
parenta5354a9f365dd3e18f10314d25dd36609671d640 (diff)
Fix AttributeError in mod_groupchat
-rw-r--r--modules/mod_groupchat_msg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_groupchat_msg.py b/modules/mod_groupchat_msg.py
index ca033fb..0257b97 100644
--- a/modules/mod_groupchat_msg.py
+++ b/modules/mod_groupchat_msg.py
@@ -40,7 +40,7 @@ def incoming_message_handler(cl, msg):
# None of “normal” clients will send messages with timestamp
# If we do (as we set in force_vk_date_group), then the message received from a user
# If we don't and nick (as in settings) is tied to the chat, then we can determine who sent the message
- send = (nick == owner_nickname and user.settings.tie_chat_to_nickname)
+ send = (nick == owner_nickname)
chat = createChat(user, source)
chat.invited = True # the user has joined themselves, so we don't need to invite them
if html and html.getTag("body"):