Improve the message-splitting algorithm for PRIVMSG and CTCP
[quassel.git] / src / core / core.cpp
index e7b5639..dfd2c95 100644 (file)
@@ -638,6 +638,7 @@ SessionThread *Core::sessionForUser(UserId uid, bool restore)
     SessionThread *session = new SessionThread(uid, restore, this);
     _sessions[uid] = session;
     session->start();
+    connect(session, SIGNAL(passwordChangeRequested(UserId, QString)), _storage, SLOT(updateUser(UserId, QString)));
     return session;
 }