From 8e70cea49ef0204eca53c615fb76edec0cf6e878 Mon Sep 17 00:00:00 2001 From: Evan Schoenberg Date: Tue, 24 Jan 2006 03:49:37 +0000 Subject: [PATCH] Merged [15063]: Don't send out typing notifications to group chats, since Gaim doesn't support it and at best is just going to look at us all confuzzled. Fixes #1016 git-svn-id: svn://svn.adiumx.com/adium/branches/adium-0.8@15064 1c916fce-81e2-0310-a464-8ca513f45935 --- Plugins/Gaim Service/CBGaimAccount.m | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Plugins/Gaim Service/CBGaimAccount.m b/Plugins/Gaim Service/CBGaimAccount.m index 109bc6ac9..043da5c9e 100644 --- a/Plugins/Gaim Service/CBGaimAccount.m +++ b/Plugins/Gaim Service/CBGaimAccount.m @@ -958,12 +958,15 @@ static SLGaimCocoaAdapter *gaimThread = nil; withFlags:flags]; } } - } else if([[object type] isEqualToString:CONTENT_TYPING_TYPE]){ + + } else if ([[object type] isEqualToString:CONTENT_TYPING_TYPE]) { AIContentTyping *contentTyping = (AIContentTyping*)object; AIChat *chat = [contentTyping chat]; - - [gaimThread sendTyping:[contentTyping typingState] inChat:chat]; - + + if (![chat name]) { + [gaimThread sendTyping:[contentTyping typingState] inChat:chat]; + } + sent = YES; } } -- 2.11.4.GIT