core: Fix the one place where we called a JS function and didn't check for jobs to run as a result. Fixes getting stuck in the intro as a non-admin.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 38m21s

This commit is contained in:
2025-06-22 18:53:20 -04:00
parent 5437212222
commit 1f40bc1a0f

View File

@ -550,6 +550,7 @@ static JSValue _task_invokeExport_internal(tf_taskstub_t* from, tf_task_t* to, e
}
result = JS_Call(to->_context, function, this_val, length - 1, argument_array);
tf_task_check_jobs(to);
tf_trace_end(to->_trace);
JS_FreeValue(to->_context, this_val);