From 61ea965080a50203265c0d3133eb419fce8ce90a Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 12 Jun 2016 13:44:19 +0000 Subject: [PATCH] I think this TaskTryCatch was effectively eating exceptions. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3245 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- src/Task.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Task.cpp b/src/Task.cpp index 42d265d0..966c8c0a 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -310,7 +310,6 @@ bool Task::execute(const char* fileName) { void Task::invokeExport(const v8::FunctionCallbackInfo& args) { Task* sender = Task::get(args.GetIsolate()); - TaskTryCatch tryCatch(sender); v8::Handle data = v8::Handle::Cast(args.Data()); exportid_t exportId = data->Get(v8::String::NewFromUtf8(args.GetIsolate(), "export"))->Int32Value(); taskid_t recipientId = data->Get(v8::String::NewFromUtf8(args.GetIsolate(), "task"))->Int32Value();