summaryrefslogtreecommitdiffstats
path: root/src/ClientInfo.hpp
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2015-10-08 20:45:26 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2015-10-08 20:45:26 +0200
commite21a8296521b888a5a6aa8633dba47359af218cf (patch)
treeda010772ec10b456bb6666817940dee892109fd7 /src/ClientInfo.hpp
parente783549b3427e907b78ab41b192a3539819760c0 (diff)
downloadmanager-e21a8296521b888a5a6aa8633dba47359af218cf.tar.gz
manager-e21a8296521b888a5a6aa8633dba47359af218cf.zip
Fix ClientInfo::toString for Management
Diffstat (limited to 'src/ClientInfo.hpp')
-rw-r--r--src/ClientInfo.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientInfo.hpp b/src/ClientInfo.hpp
index 1271096..d223932 100644
--- a/src/ClientInfo.hpp
+++ b/src/ClientInfo.hpp
@@ -105,7 +105,7 @@ public:
}
else
{
- return interface == Auto ? "~auto~" : interface == Management ? management.name + "{CLI} " : (!nick.isEmpty() ? nick + (interface == Clonk ? " (" + pcName + ")" : " [IRC]") : "");
+ return interface == Auto ? "~auto~" : interface == Management ? management.name + " {CLI}" : (!nick.isEmpty() ? nick + (interface == Clonk ? " (" + pcName + ")" : " [IRC]") : "");
}
}