summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/runtime.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index 4c8bf0db5..7cb566712 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());
}