diff --git a/core/runtime.rs b/core/runtime.rs index 4c8bf0db59..7cb5667128 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1942,7 +1942,7 @@ impl JsRuntime { let mut args = vec![]; for (promise_id, resp) in results.into_iter() { - args.push(v8::Integer::new(scope, promise_id as i32).into()); + args.push(v8::Integer::new(scope, promise_id).into()); args.push(resp.to_v8(scope).unwrap()); }