|
|
@@ -807,7 +807,11 @@ final class BaseAPSManager: APSManager, Injectable {
|
|
|
let buildDate = Bundle.main.buildDate
|
|
|
let version = Bundle.main.releaseVersionNumber
|
|
|
let build = Bundle.main.buildVersionNumber
|
|
|
- let branch = Bundle.main.infoDictionary?["BuildBranch"] as? String
|
|
|
+
|
|
|
+ let branch_ = Bundle.main.infoDictionary?["BuildBranch"] as? String ?? ""
|
|
|
+ let copyrightNotice_ = Bundle.main.infoDictionary?["NSHumanReadableCopyright"] as? String ?? ""
|
|
|
+ let branch = branch_ + " " + copyrightNotice_
|
|
|
+
|
|
|
let pump_ = pumpManager?.localizedTitle ?? ""
|
|
|
let cgm = settingsManager.settings.cgm
|
|
|
let file = OpenAPS.Monitor.statistics
|
|
|
@@ -1286,7 +1290,7 @@ final class BaseAPSManager: APSManager, Injectable {
|
|
|
iOS: UIDevice.current.getOSInfo,
|
|
|
Build_Version: version ?? "",
|
|
|
Build_Number: build ?? "1",
|
|
|
- Branch: branch ?? "N/A",
|
|
|
+ Branch: branch,
|
|
|
Build_Date: buildDate,
|
|
|
Algorithm: algo_,
|
|
|
AdjustmentFactor: af,
|