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

Commit 6c133a78 authored by San Mehat's avatar San Mehat
Browse files

MountService: Fix asec list bug



Signed-off-by: default avatarSan Mehat <san@google.com>
parent 595ae28d
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;