From a1ea09de117bff522e08c4e5e3aa386ba192d276 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 24 Sep 2015 20:57:16 +0200 Subject: Fix detecting of activating clients --- src/crsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/crsm.cpp') diff --git a/src/crsm.cpp b/src/crsm.cpp index f65f865..4506c4b 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -200,7 +200,7 @@ void CRSM::readServerOutput() if(activatedExp.exactMatch(what)) { QRegExp infoMatch("^<(.*)\\|(\\d+)\\|(.*)>$"); - if(infoMatch.exactMatch(joinExp.cap(1))) + if(infoMatch.exactMatch(activatedExp.cap(1))) { ClientInfo &info = getClientInfo(infoMatch.cap(1), infoMatch.cap(2).toInt(), infoMatch.cap(3)); info.activated = true; -- cgit v1.2.3-54-g00ecf