mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:47:44 +00:00
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:
parent
67a0fa2b78
commit
870ecd5190
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue