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

Commit 04cbc7ef authored by Winson's avatar Winson Committed by android-build-merger
Browse files

Catching all exceptions when docking. am: f60a4af0 am: 5e04aeb3

am: 155ac5d0

* commit '155ac5d0':
  Catching all exceptions when docking.

Change-Id: Ib31b4d549f1f7724a5cc6d73b7fa7ff6b3958c51
parents 14447d2f 155ac5d0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -418,8 +418,8 @@ public class SystemServicesProxy {
            options.setLaunchStackId(DOCKED_STACK_ID);
            mIam.startActivityFromRecents(taskId, options.toBundle());
            return true;
        } catch (RemoteException | IllegalArgumentException e) {
            e.printStackTrace();
        } catch (Exception e) {
            Log.e(TAG, "Failed to dock task: " + taskId + " with createMode: " + createMode, e);
        }
        return false;
    }