From 20161f3059d5286694848ffa357c4f3726a59895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Tue, 21 Oct 2025 20:41:16 +0800 Subject: [PATCH] redirect: Fix compatibility with `/product/bin/su` --- redirect_linux.go | 1 + 1 file changed, 1 insertion(+) diff --git a/redirect_linux.go b/redirect_linux.go index 5441bc1..8c97d07 100644 --- a/redirect_linux.go +++ b/redirect_linux.go @@ -69,6 +69,7 @@ func (r *autoRedirect) Start() error { r.androidSu = true for _, suPath := range []string{ "su", + "/product/bin/su", "/system/bin/su", } { r.suPath, err = exec.LookPath(suPath)