1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 12:03:00 +02:00

fix: return from history if first time

This commit is contained in:
aclist 2023-05-20 10:03:13 +09:00
parent 85f17aa217
commit 72eab0daf0

View file

@ -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(){