From 6f9aaa252b18db67a3f6bf18d39fa56051287d61 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 13 Jan 2024 04:59:26 +0900 Subject: [PATCH] fix: toggle news --- dzgui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index 0bb3ef9..fa1dac3 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -803,8 +803,8 @@ main(){ local news=$(check_news) printf "All OK. Kicking off UI...\n" - [[ -n $news ]] && python3 "$ui_helper" "--init-ui" "$news" "$version" - [[ -z $news ]] && python3 "$ui_helper" "--init-ui" "null" "$version" + [[ -z $news ]] && news="null" + python3 "$ui_helper" "--init-ui" "$news" "$version" "$is_steam_deck" } main #TODO: tech debt: cruddy handling for steam forking