LibWeb: Remove unused capture in queue_a_microtask()

This commit is contained in:
Andreas Kling 2022-09-24 13:48:38 +02:00
parent a8e1599ae1
commit ba065faa54
Notes: sideshowbarker 2024-07-17 18:46:57 +09:00

View File

@ -220,7 +220,7 @@ JS::VM& main_thread_vm()
auto* script = active_script();
// NOTE: This keeps job_settings alive by keeping realm alive, which is holding onto job_settings.
HTML::queue_a_microtask(script ? script->settings_object().responsible_document().ptr() : nullptr, [job_settings, job = move(job), realm, script_or_module = move(script_or_module)]() mutable {
HTML::queue_a_microtask(script ? script->settings_object().responsible_document().ptr() : nullptr, [job_settings, job = move(job), script_or_module = move(script_or_module)]() mutable {
// The dummy execution context has to be kept up here to keep it alive for the duration of the function.
Optional<JS::ExecutionContext> dummy_execution_context;