diff options
-rw-r--r-- | connection.cpp | 2 | ||||
-rw-r--r-- | room.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/connection.cpp b/connection.cpp index bf19a16e..a219f1da 100644 --- a/connection.cpp +++ b/connection.cpp @@ -63,7 +63,7 @@ void Connection::connectToServer(QString user, QString password) { PasswordLogin* loginJob = new PasswordLogin(d->data, user, password); connect( loginJob, &PasswordLogin::success, [=] () { - qDebug() << "Our user ID: " << d->userId; + qDebug() << "Our user ID: " << loginJob->id(); connectWithToken(loginJob->id(), loginJob->token()); }); connect( loginJob, &PasswordLogin::failure, [=] () { @@ -74,7 +74,6 @@ class Room::Private: public QObject QHash<User*, QString> lastReadEvent; QString prevBatch; RoomMessagesJob* roomMessagesJob; - bool gettingNewContent; // Convenience methods to work with the membersMap and usersLeft. addMember() // and removeMember() emit respective Room:: signals after a succesful |