summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalliski <walliski@gmail.com>2014-10-29 20:06:23 +0200
committerWalliski <walliski@gmail.com>2014-10-29 20:06:23 +0200
commit5cd43b08f033049f6269fa0a24b56bc1718f1420 (patch)
tree03b003b775db0955556b354b97122e1c32b2096a
parentee94be7583841a53bf31b0dba06f85bcdbf40de9 (diff)
Made channels lowercase
-rw-r--r--backlog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backlog.cpp b/backlog.cpp
index 07e70c6..4a8f816 100644
--- a/backlog.cpp
+++ b/backlog.cpp
@@ -102,7 +102,7 @@ void CBacklogMod::OnModCommand(const CString& sCommand) {
CString Path = GetNV("LogPath").substr(); // make copy
Path.Replace("$NETWORK", Network);
- Path.Replace("$WINDOW", Channel);
+ Path.Replace("$WINDOW", Channel.AsLower());
Path.Replace("$USER", User);
CString DirPath = Path.substr(0, Path.find_last_of("/"));