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

Commit d0549110 authored by Reema Bajwa's avatar Reema Bajwa Committed by Automerger Merge Worker
Browse files

Merge "Fix the exception type set on ui cancellation" into udc-dev am: d449e20e am: b138867e

parents 9f53fdb6 b138867e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -158,7 +158,7 @@ public class GetRequestSession extends RequestSession<GetCredentialRequest,


    @Override
    @Override
    public void onUiCancellation(boolean isUserCancellation) {
    public void onUiCancellation(boolean isUserCancellation) {
        String exception = GetCredentialException.TYPE_NO_CREDENTIAL;
        String exception = GetCredentialException.TYPE_USER_CANCELED;
        String message = "User cancelled the selector";
        String message = "User cancelled the selector";
        if (!isUserCancellation) {
        if (!isUserCancellation) {
            exception = GetCredentialException.TYPE_INTERRUPTED;
            exception = GetCredentialException.TYPE_INTERRUPTED;