aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--connection.cpp2
-rw-r--r--room.cpp1
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, [=] () {
diff --git a/room.cpp b/room.cpp
index 07c94987..81b64c54 100644
--- a/room.cpp
+++ b/room.cpp
@@ -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