Tolerate missing run-in-background key.

Resolves #5233
This commit is contained in:
Daniel Johnson 2024-01-14 09:33:40 -05:00
parent 40ce354122
commit c2d298cb5f

View file

@ -334,7 +334,7 @@ def _get_compositor_commands():
if command_set:
start_compositor = command_set["start_compositor"]
stop_compositor = command_set["stop_compositor"]
run_in_background = command_set["run_in_background"]
run_in_background = bool(command_set.get("run_in_background"))
return start_compositor, stop_compositor, run_in_background
return None, None, False