1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:37:36 +00:00

LaunchServer: Actually seal the allow-list on SealAllowList

Fixes #6804.
This commit is contained in:
Andreas Kling 2021-05-02 08:16:42 +02:00
parent 889359b6f9
commit 68a542623f

View file

@ -122,6 +122,8 @@ void ClientConnection::handle(const Messages::LaunchServer::SealAllowlist&)
did_misbehave("Got more than one request to seal the allowed handlers list"); did_misbehave("Got more than one request to seal the allowed handlers list");
return; return;
} }
m_allowlist_is_sealed = true;
} }
} }