[ios] Distinguish bug reports from iCloud by their email subject

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-08-22 11:29:48 +02:00 committed by Alexander Borsuk
parent 6b242fcb00
commit ab24b6eb48
3 changed files with 4 additions and 4 deletions

View file

@ -353,7 +353,7 @@ static NSString *const kDefaultAlertNibName = @"MWMDefaultAlert";
message:L(@"bugreport_alert_message")
rightButtonTitle:L(@"report_a_bug")
leftButtonTitle:L(@"cancel")
rightButtonAction:^{ [MailComposer sendBugReport]; }
rightButtonAction:^{ [MailComposer sendBugReportWithTitle:title]; }
log:nil];
[alert setNeedsCloseAlertAfterEnterBackground];
return alert;

View file

@ -277,7 +277,7 @@ private extension AboutController {
case .faq:
self?.navigationController?.pushViewController(FaqController(), animated: true)
case .reportABug:
MailComposer.sendBugReport()
MailComposer.sendBugReportWith(title:"Organic Maps Bug Report")
case .reportMapDataProblem, .volunteer, .news:
self?.openUrl(aboutInfo.link)
case .rateTheApp:

View file

@ -15,10 +15,10 @@ final class MailComposer: NSObject {
}
/// Composes an email with the additional app information and the log file attachment for the developers.
static func sendBugReport() {
static func sendBugReportWith(title: String) {
func subject() -> String {
let appInfo = AppInfo.shared()
return String(format:"[%@-%@ iOS] %@", appInfo.bundleVersion, appInfo.buildNumber, "Organic Maps Bugreport")
return String(format:"[%@-%@ iOS] %@", appInfo.bundleVersion, appInfo.buildNumber, title)
}
func body() -> String {