From 75f781be2ce1db41560fe6641292281ac26bec78 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Mon, 30 Aug 2021 21:43:39 +0200 Subject: [PATCH] Fix Update Options --- home.admin/99updateMenu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.admin/99updateMenu.sh b/home.admin/99updateMenu.sh index c495cff81..af64374b4 100755 --- a/home.admin/99updateMenu.sh +++ b/home.admin/99updateMenu.sh @@ -379,7 +379,7 @@ OPTIONS+=(RELEASE "RaspiBlitz Release Update/Recovery") OPTIONS+=(PATCH "Patch RaspiBlitz v${codeVersion}") OPTIONS+=(BITCOIN "Bitcoin Core Update Options") -if [ "${lightning}" == "lnd" ]; then +if [ "${lightning}" == "lnd" ] || [ "${lnd}" == "on" ]; then OPTIONS+=(LND "Interim LND Update Options") fi @@ -419,7 +419,7 @@ CHOICE_HEIGHT=$(("${#OPTIONS[@]}/2+1")) HEIGHT=$((CHOICE_HEIGHT+6)) CHOICE=$(dialog --clear \ --backtitle "" \ - --title "Update Options" \ + --title " Update Options " \ --ok-label "Select" \ --cancel-label "Main menu" \ --menu "" \