This commit is contained in:
nekohepott 2026-06-17 04:16:27 +03:00
parent 4024e9f592
commit 11915c10be
No known key found for this signature in database

View File

@ -1,6 +1,7 @@
package providers package providers
import ( import (
"fmt"
"os" "os"
"os/exec" "os/exec"
"strconv" "strconv"
@ -26,7 +27,7 @@ func getPmPackages(packagerName string, packagerPath string) string {
if err != nil { if err != nil {
return "error reading apk package list" return "error reading apk package list"
} }
return strconv.Itoa(len(pkgs)) + " (apk)" return fmt.Sprintf(string(pkgs) + " (apk)")
} }
return strconv.Itoa(len(pkgs)) + " (" + packagerName + ")" return strconv.Itoa(len(pkgs)) + " (" + packagerName + ")"
} }