extremely minor chaange

This commit is contained in:
lempamo 2017-03-06 09:31:07 -05:00
parent f16e5da5ae
commit c1567f93f3

View file

@ -55,7 +55,7 @@ namespace ShiftOS.WinForms.Applications
var args = JsonConvert.DeserializeObject<Dictionary<string, string>>(msg.Contents);
var cmsg = new ShiftOS.Objects.ChatMessage(args["Username"] as string, args["SystemName"] as string, args["Message"] as string, args["Channel"] as string);
if (id == cmsg.Channel)
rtbchat.AppendText($"[{cmsg.Username}@{cmsg.SystemName}] {cmsg.Message}{Environment.NewLine}");
rtbchat.AppendText($"[{cmsg.Username}@{cmsg.SystemName}]: {cmsg.Message}{Environment.NewLine}");
}
catch (Exception ex)
{