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 1a3b021d3f
commit 12e7a0cf31

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