OSDN Git Service

RAD-466: Refresh group info after ejecting a member
authorLatif Khalifa <latifer@streamgrid.net>
Sat, 8 Mar 2014 14:55:48 +0000 (15:55 +0100)
committerLatif Khalifa <latifer@streamgrid.net>
Sat, 8 Mar 2014 14:55:48 +0000 (15:55 +0100)
Radegast/GUI/Consoles/GroupDetails.cs
Radegast/GUI/Consoles/TabsConsole.cs

index 4998828..4a20ee2 100644 (file)
@@ -143,7 +143,7 @@ namespace Radegast
 
             if (e.Success)
             {
-                BeginInvoke(new MethodInvoker(() => { RefreshMembersRoles(); }));
+                BeginInvoke(new MethodInvoker(() => { RefreshGroupInfo(); }));
                 instance.TabConsole.DisplayNotificationInChat("Group member ejected.");
             }
             else
index a1774dd..539e54a 100644 (file)
@@ -391,7 +391,7 @@ namespace Radegast
                     }
                     else if (e.IM.IMSessionID == UUID.Zero)
                     {
-                        String msg = string.Format("Region message from {0}: {1}", instance.Names.Get(e.IM.FromAgentID, e.IM.FromAgentName), e.IM.Message);
+                        String msg = string.Format("Message from {0}: {1}", instance.Names.Get(e.IM.FromAgentID, e.IM.FromAgentName), e.IM.Message);
                         instance.MainForm.AddNotification(new ntfGeneric(instance, msg));
                         DisplayNotificationInChat(msg);
                     }