|
@@ -1040,11 +1040,13 @@ function restore_data_from_storage {
|
1040
|
1040
|
do
|
1041
|
1041
|
app_index=$[choice-2]
|
1042
|
1042
|
app_name=${app_list[app_index]}
|
1043
|
|
- $restore_command "${app_name}"
|
1044
|
|
- if [ ! "$?" = "0" ]; then
|
1045
|
|
- dialog --title $"Restore apps from USB" \
|
1046
|
|
- --msgbox $"Restore of ${app_name} failed with code $?" 6 40
|
1047
|
|
- return
|
|
1043
|
+ if [ ${#app_name} -gt 0 ]; then
|
|
1044
|
+ $restore_command "${app_name}"
|
|
1045
|
+ if [ ! "$?" = "0" ]; then
|
|
1046
|
+ dialog --title $"Restore apps from USB" \
|
|
1047
|
+ --msgbox $"Restore of ${app_name} failed with code $?" 6 40
|
|
1048
|
+ return
|
|
1049
|
+ fi
|
1048
|
1050
|
fi
|
1049
|
1051
|
ctr=$((ctr + 1))
|
1050
|
1052
|
done
|