| Index: src/WebRequestJsObject.cpp | 
| diff --git a/src/WebRequestJsObject.cpp b/src/WebRequestJsObject.cpp | 
| index e3709448842acef824e9a2474e927f1e52d8e833..ffcf192c414652a255171a657cb28f010e06a8e5 100644 | 
| --- a/src/WebRequestJsObject.cpp | 
| +++ b/src/WebRequestJsObject.cpp | 
| @@ -21,6 +21,7 @@ | 
|  | 
| #include "JsContext.h" | 
| #include "Thread.h" | 
| +#include "Utils.h" | 
| #include "WebRequestJsObject.h" | 
|  | 
| namespace | 
| @@ -100,7 +101,9 @@ namespace | 
| } | 
| catch (const std::exception& e) | 
| { | 
| -      return v8::ThrowException(v8::String::New(e.what())); | 
| +      using AdblockPlus::Utils::ToV8String; | 
| +      v8::Isolate* isolate = arguments.GetIsolate(); | 
| +      return v8::ThrowException(ToV8String(isolate, e.what())); | 
| } | 
| thread->Start(); | 
| return v8::Undefined(); | 
|  |