From 6cde52fc8ac1b9057476274f61a5b87dee2c16b8 Mon Sep 17 00:00:00 2001 From: Chris Renshaw Date: Sun, 27 Jul 2025 23:39:35 -0300 Subject: [PATCH] Fix ui_print regression during late installation --- module/common_func.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/module/common_func.sh b/module/common_func.sh index f7cb699..78c512d 100644 --- a/module/common_func.sh +++ b/module/common_func.sh @@ -79,4 +79,6 @@ resetprop_if_match() { } # stub for boot-time -ui_print() { return; } +if [ "$(getprop sys.boot_completed)" != "1" ]; then + ui_print() { return; } +fi