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

Commit 8b3ef5ab authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Catch IllegalArgumentException from startActivityFromRecents."

parents abdcd1c0 d7f4972a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1357,7 +1357,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {
        }
        try {
            ActivityManager.getService().startActivityFromRecents(targetTask.persistentId, null);
        } catch (RemoteException e) {
        } catch (RemoteException | IllegalArgumentException e) {
            Slog.e(TAG, "Failed to start task " + targetTask.persistentId + " from recents", e);
        }
    }