Actually shows AltStore build version in Settings for BETA builds

This commit is contained in:
Riley Testut
2023-12-08 18:48:17 -06:00
committed by Magesh K
parent d7aa3b405d
commit 31aeec6b38

View File

@@ -132,7 +132,12 @@ final class SettingsViewController: UITableViewController
{
#if BETA
// Only show build version for BETA builds.
let localizedVersion = installedApp.localizedVersion
let localizedVersion = if let bundleVersion = Bundle.main.object(forInfoDictionaryKey: kCFBundleVersionKey as String) as? String {
"\(installedApp.version) (\(bundleVersion))"
}
else {
installedApp.localizedVersion
}
#else
let localizedVersion = installedApp.version
#endif