| Index: Source/modules/fetch/Body.cpp
|
| diff --git a/Source/modules/fetch/Body.cpp b/Source/modules/fetch/Body.cpp
|
| index 6b43a22094c661901cda9335c75f4c832d802de9..18325ba68eced85beb4689f9a5d1bcfeada5b913 100644
|
| --- a/Source/modules/fetch/Body.cpp
|
| +++ b/Source/modules/fetch/Body.cpp
|
| @@ -424,7 +424,7 @@ void Body::resolveJSON(const String& string)
|
| if (trycatch.HasCaught())
|
| m_resolver->reject(trycatch.Exception());
|
| else
|
| - m_resolver->reject(v8::Exception::Error(v8::String::NewFromUtf8(isolate, "JSON parse error")));
|
| + m_resolver->reject(v8::Exception::Error(v8NormalString(isolate, "JSON parse error")));
|
| return;
|
| }
|
| m_resolver->resolve(parsed);
|
|
|