LibConfig: VERIFY that a Core::EventLoop exists before connecting

It's not possible to connect to ConfigServer without having an event
loop available. This VERIFY makes it much easier to understand why
things are not working. :^)
This commit is contained in:
Andreas Kling 2021-08-25 20:01:09 +02:00
parent 67a0fa2b78
commit 870ecd5190

View file

@ -12,8 +12,10 @@ static RefPtr<Client> s_the = nullptr;
Client& Client::the()
{
if (!s_the || !s_the->is_open())
if (!s_the || !s_the->is_open()) {
VERIFY(Core::EventLoop::has_been_instantiated());
s_the = Client::construct();
}
return *s_the;
}