Skip to content

Commit

Permalink
more checks for ksu
Browse files Browse the repository at this point in the history
Signed-off-by: androidacy-user <[email protected]>
  • Loading branch information
androidacy-user committed Oct 3, 2023
1 parent 84bbf9f commit c05f882
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ class InstallerInitializer {
"/data/adb/ksud -V"
).to(
output
).exec().isSuccess && "true" == output[0]
).exec().isSuccess && "true" == output[0] && output[1].isNotEmpty() && !output[1].contains(
"not found", true)
) {
if (MainApplication.forceDebugLogging) {
Timber.i("Kernelsu detected")
Expand Down

0 comments on commit c05f882

Please sign in to comment.