Skip to content

Commit daf843b

Browse files
committed
Fix ErrorActivity not displayed.
1 parent 873d12c commit daf843b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/src/com/tns/Platform.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ static void setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler h
150150
public void uncaughtException(Thread thread, Throwable ex)
151151
{
152152
String content = ErrorReport.getErrorMessage(ex);
153-
passUncaughtExceptionToJsNative(ex, content);
153+
// TODO: passUncaughtExceptionToJsNative fails due to V8's invalid state - examine this!!!
154+
// passUncaughtExceptionToJsNative(ex, content);
154155

155156
if (IsLogEnabled) Log.e(DEFAULT_LOG_TAG, "Uncaught Exception Message=" + ex.getMessage());
156157

0 commit comments

Comments
 (0)