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

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

Merge "Fixed canceling fill request caused removal current session"

parents 3d95b39c 72c3f2bf
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -187,10 +187,9 @@ final class RemoteFillService extends ServiceConnector.Impl<IAutoFillService> {
                if (err instanceof TimeoutException) {
                    dispatchCancellationSignal(cancellationSink.get());
                    mCallbacks.onFillRequestTimeout(request.getId());
                } else {
                    if (err instanceof CancellationException) {
                } else if (err instanceof CancellationException) {
                    dispatchCancellationSignal(cancellationSink.get());
                    }
                } else {
                    mCallbacks.onFillRequestFailure(request.getId(), err.getMessage());
                }
            }