Fix xposed api version display

This commit is contained in:
tehcneko 2021-01-28 23:43:56 +08:00
parent e9fe118998
commit 46afa3abc4
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class StatusDialogBuilder extends MaterialAlertDialogBuilder {
binding.manager.setText(mAppVer);
if (installedXposedVersion != null) {
binding.api.setText(String.format(Locale.US, "%s.0", Constants.getXposedVariant()));
binding.api.setText(String.format(Locale.US, "%s.0", Constants.getXposedApiVersion()));
binding.framework.setText(String.format(Locale.US, "%s (%s)", installedXposedVersion, Constants.getXposedVersionCode()));
}