diff options
author | Jiyong Park <jiyong@google.com> | 2020-05-25 11:14:53 +0200 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2020-05-25 11:14:53 +0200 |
commit | bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9 (patch) | |
tree | 7e41d03cdc6a8fc210c9cd0d85092b6450d81702 | |
parent | Merge changes from topic "nonab_pkg" (diff) | |
download | android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar.gz android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar.bz2 android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar.lz android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar.xz android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.tar.zst android_bootable_recovery-bfd6764bf633bc4e6f6c403bbd10c6bc0ea1f3d9.zip |
-rw-r--r-- | recovery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index b1f106b1c..e02bc726e 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -702,7 +702,7 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri } std::vector<std::string> title_lines = - android::base::Split(android::base::GetProperty("ro.bootimage.build.fingerprint", ""), ":"); + android::base::Split(android::base::GetProperty("ro.build.fingerprint", ""), ":"); title_lines.insert(std::begin(title_lines), "Android Recovery"); ui->SetTitle(title_lines); |