Skip to content

Commit

Permalink
okm-memu: Fix empty device name
Browse files Browse the repository at this point in the history
Signed-off-by: Rem01Gaming <Rem01_Gaming@proton.me>
  • Loading branch information
Rem01Gaming committed Oct 16, 2024
1 parent 50fdfd9 commit dd8ea0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions share/database_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ execstoredcmd() {
init_execstoredcmd() {
header_info=()
[ $ANDROID ] && header_info+=(
"[] DEVICE: $(getprop ro.product.system.model)"
"[] DEVICE: $(getprop ro.product.model)"
"[] MANUFACTURER: $VENDOR"
"[] SELINUX: $(getenforce)"
"[] ANDROID VERSION: $ANDROID_VER"
Expand All @@ -88,7 +88,7 @@ init_execstoredcmd() {
"[] GPU: $gpu"
"[] KERNEL VERSION: $(uname -r)"
"[] UPTIME: $(uptime -p)"
"[] ENTROPY: ${ENTROPY}"
"[] ENTROPY: $ENTROPY"
)
header "Main Menu"
echo -e "\n"
Expand Down
2 changes: 1 addition & 1 deletion src/okm-menu
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ main_menu() {
unset_headvar
header_info=()
[ $ANDROID ] && header_info+=(
"[] DEVICE: $(getprop ro.product.system.model)"
"[] DEVICE: $(getprop ro.product.model)"
"[] MANUFACTURER: $VENDOR"
"[] SELINUX: $(getenforce)"
"[] ANDROID VERSION: $ANDROID_VER"
Expand Down

0 comments on commit dd8ea0c

Please sign in to comment.