Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3fb9d872 authored by Vadim Tryshev's avatar Vadim Tryshev Committed by Android (Google) Code Review
Browse files

Merge "Suppressing Illegal argument exception when activating a task."

parents ddcc49fe 15120720
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -173,7 +173,9 @@ class NavigationBarRecents extends LinearLayout {
                try {
                    manager.startActivityFromRecents(taskPersistentId, null /* options */);
                } catch (RemoteException e) {
                    e.printStackTrace();
                    Log.e(TAG, "Exception when activating a recent task", e);
                } catch (IllegalArgumentException e) {
                    Log.e(TAG, "Exception when activating a recent task", e);
                }
            }
        });