From f4e68d08c8d99ff745183212fffddaa4605878ef Mon Sep 17 00:00:00 2001 From: Anton Date: Wed, 27 Apr 2022 15:34:36 +0200 Subject: [PATCH] Fix: e-mail address not copying over to the new configuration file --- scripts/update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/update.sh b/scripts/update.sh index 58cd26d..40e48cc 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -100,6 +100,9 @@ Main() { case $(GetOldSetting 'version') in "1.0"| "1.1") + # This fixes a bug where the e-mail address was not copied over to the new config format. + printf '\n' >> "${oldConfig}" + currentEmail="$(GetOldSetting 'email')" || : currentLocation="$(GetOldSetting 'location')" || : currentTimer="$(GetOldSetting 'timer')" || :