forked from organicmaps/organicmaps
[ios] Distinguish bug reports from iCloud by their email subject
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
6b242fcb00
commit
ab24b6eb48
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue