Forgot to add a signal handler.

This commit is contained in:
Adam Treat 2023-06-19 19:50:16 -04:00 committed by AT
parent a39a897e34
commit d5f56d3308

View File

@ -71,6 +71,7 @@ Server::Server(Chat *chat)
, m_server(nullptr)
{
connect(this, &Server::threadStarted, this, &Server::start);
connect(this, &Server::databaseResultsChanged, this, &Server::handleDatabaseResultsChanged);
}
Server::~Server()