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

Commit e9c6eccd authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "support chinese character for ota package's path" am: b8877a98 am: 7acb5f8e

am: df2f0ced

Change-Id: I0024baaba76cfe2335fda8dbc072f809b9ea2005
parents 81efd59e df2f0ced
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -285,8 +285,9 @@ public final class RecoverySystemService extends SystemService {

                // Send the BCB commands if it's to setup BCB.
                if (isSetup) {
                    dos.writeInt(command.length());
                    dos.writeBytes(command);
                    byte[] cmdUtf8 = command.getBytes("UTF-8");
                    dos.writeInt(cmdUtf8.length);
                    dos.write(cmdUtf8, 0, cmdUtf8.length);
                    dos.flush();
                }