From df54db77625e0e51b1d016fb8a1f89f7458a0584 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 1 Feb 2019 23:26:33 -0500 Subject: Fix v8_str internalize bug --- libdeno/modules.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libdeno/modules.cc') diff --git a/libdeno/modules.cc b/libdeno/modules.cc index 961686aca..851ade8c8 100644 --- a/libdeno/modules.cc +++ b/libdeno/modules.cc @@ -102,7 +102,7 @@ v8::MaybeLocal ResolveCallback(Local context, char buf[64 * 1024]; snprintf(buf, sizeof(buf), "Cannot resolve module \"%s\" from \"%s\"", req_str.c_str(), referrer_info->name.c_str()); - isolate->ThrowException(deno::v8_str(buf, true)); + isolate->ThrowException(deno::v8_str(buf)); break; } else { Local child_mod = info->handle.Get(isolate); -- cgit v1.2.3