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

Commit 51d3e798 authored by San Mehat's avatar San Mehat Committed by Android (Google) Code Review
Browse files

Merge "MountService: Fix asec list bug"

parents 7aac5547 6c133a78
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ final class MountListener implements Runnable {
        for (String line : rsp) {
            String []tok = line.split(" ");
            int code = Integer.parseInt(tok[0]);
            if (code == ResponseCode.AsecPathResult) {
            if (code == ResponseCode.AsecListResult) {
                rdata[idx++] = tok[1];
            } else if (code == ResponseCode.CommandOkay) {
                return rdata;