Thanks Mit. I looked at the results in our org bot. It appears that FC mucks with the user data and old members disappear and reappear from org roster from time to time causing the bot to record their "re-invitation" by "System". I propose the following change to this plugin:
Where the code used to read:
try
{
window.AppendHighlight( reader.GetString(0) );
[... bunch of window.Appends here]
window.AppendLineBreak();
}
catch { }
The new code should be:
try
{
if ( reader.GetString(1) != "System" )
{
window.AppendHighlight( reader.GetString(0) );
[... same bunch of window.Appends here]
window.AppendLineBreak();
}
}
catch { }