Skip to content

Commit a37a7ea

Browse files
authored
Fixes #1845 (#1846)
1 parent e97757f commit a37a7ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

android/sdl_android/src/main/java/com/smartdevicelink/transport/SdlBroadcastReceiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ public void uncaughtException(Thread t, Throwable e) {
423423
&& e instanceof AndroidRuntimeException
424424
&& ("android.app.RemoteServiceException".equals(e.getClass().getName()) || "android.app.ForegroundServiceDidNotStartInTimeException".equals(e.getClass().getName())) //android.app.RemoteServiceException is a private class
425425
&& e.getMessage() != null
426-
&& (e.getMessage().contains("SdlRouterService")) || e.getMessage().contains(serviceName)) {
426+
&& (e.getMessage().contains("SdlRouterService") || e.getMessage().contains(serviceName))) {
427427
DebugTool.logInfo(TAG, "Handling failed startForegroundService call");
428428
Looper.loop();
429429
} else if (defaultUncaughtExceptionHandler != null) { //No other exception should be handled

0 commit comments

Comments
 (0)