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

Commit 155ac5d0 authored by Winson's avatar Winson Committed by android-build-merger
Browse files

Catching all exceptions when docking. am: f60a4af0

am: 5e04aeb3

* commit '5e04aeb3':
  Catching all exceptions when docking.

Change-Id: Ib30bff6adda9728243ae1f63398101ec67b0d432
parents 9306f9d9 5e04aeb3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -417,8 +417,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;
    }