From 72eab0daf0ea473a81107fefe205f8cd2842cb79 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 20 May 2023 10:03:13 +0900 Subject: [PATCH] fix: return from history if first time --- dzgui.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dzgui.sh b/dzgui.sh index 1dd49d6..9783d53 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -670,6 +670,7 @@ prepare_ip_list(){ fi } history_table(){ + [[ ! -f $hist_file ]] && { pop 1000; return; } [[ -f /tmp/dz.hist ]] && rm /tmp/dz.hist for i in $(cat $hist_file); do echo "# Getting metadata for $i" @@ -1111,7 +1112,8 @@ popup(){ 600) pop "No preferred servers set." ;; 700) pop "Toggled to Flatpak Steam." ;; 800) pop "Toggled to native Steam." ;; - 900) pop "This feature is not supported on Steam Deck." + 900) pop "This feature is not supported on Steam Deck." ;; + 1000) pop "No recent history." esac } toggle_console_dl(){