Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit e3ef938

Browse files
committed
fixed empty user list when creating database
1 parent aad1e93 commit e3ef938

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ramobjects/ramses.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ void Ramses::setUserUuid(QString uuid)
1818
return;
1919
}
2020
RamUser *u = RamUser::get(uuid);
21+
// Add the user to the list in case it's not already there
22+
m_users->appendObject(uuid);
2123
setUser(u);
2224
}
2325

0 commit comments

Comments
 (0)