diff --git a/core/magisk_module/post-fs-data.sh b/core/magisk_module/post-fs-data.sh index 1800abbe..bf7af376 100644 --- a/core/magisk_module/post-fs-data.sh +++ b/core/magisk_module/post-fs-data.sh @@ -64,7 +64,6 @@ fi # If logcat client is kicked out by klogd server, we'll restart it. # However, if it is killed manually or by LSPosed Manager, we'll exit. -# Refer to https://github.com/ElderDrivers/LSPosed/pull/575 for more information. loop_logcat() { while true; do logcat $* diff --git a/core/magisk_module/util_functions.sh b/core/magisk_module/util_functions.sh index b1ff5e0e..a978e304 100644 --- a/core/magisk_module/util_functions.sh +++ b/core/magisk_module/util_functions.sh @@ -23,7 +23,7 @@ check_magisk_version() { if [ "$MAGISK_VER_CODE" -lt 21000 ]; then ui_print "*********************************************************" ui_print "! Please install Magisk v21+" - abortC "*********************************************************" + abort "*********************************************************" fi } @@ -32,7 +32,7 @@ require_new_android() { ui_print "! Unsupported Android version ${1} (below Oreo MR1)" ui_print "! Learn more from our GitHub Wiki" [ "$BOOTMODE" == "true" ] && am start -a android.intent.action.VIEW -d https://github.com/LSPosed/LSPosed/wiki/Available-Android-versions - abortC "*********************************************************" + abort "*********************************************************" } check_android_version() {