aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Chat.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-03-06 09:31:07 -0500
committerlempamo <[email protected]>2017-03-06 09:31:56 -0500
commitc1567f93f3a0bad3f8ef984bf980666cb31dfd87 (patch)
tree8b7fc71896abd0229bc927a19121210c111563a4 /ShiftOS.WinForms/Applications/Chat.cs
parentf16e5da5ae915e346fed29e8b3620fe9a243584d (diff)
downloadshiftos_thereturn-c1567f93f3a0bad3f8ef984bf980666cb31dfd87.tar.gz
shiftos_thereturn-c1567f93f3a0bad3f8ef984bf980666cb31dfd87.tar.bz2
shiftos_thereturn-c1567f93f3a0bad3f8ef984bf980666cb31dfd87.zip
extremely minor chaange
Diffstat (limited to 'ShiftOS.WinForms/Applications/Chat.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Chat.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Chat.cs b/ShiftOS.WinForms/Applications/Chat.cs
index 7f3fc04..06a7873 100644
--- a/ShiftOS.WinForms/Applications/Chat.cs
+++ b/ShiftOS.WinForms/Applications/Chat.cs
@@ -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)
{