Add a few more labels when sending a rageshake. (#4284)
This commit is contained in:
@@ -97,17 +97,16 @@ class BugReportScreenViewModel: BugReportScreenViewModelType, BugReportScreenVie
|
||||
// Continue anyway without the screenshot.
|
||||
}
|
||||
}
|
||||
let ed25519 = await clientProxy?.ed25519Base64()
|
||||
let curve25519 = await clientProxy?.curve25519Base64()
|
||||
let bugReport = BugReport(userID: clientProxy?.userID,
|
||||
deviceID: clientProxy?.deviceID,
|
||||
ed25519: ed25519,
|
||||
curve25519: curve25519,
|
||||
text: context.reportText,
|
||||
logFiles: context.sendingLogsEnabled ? logFiles : nil,
|
||||
canContact: context.canContact,
|
||||
githubLabels: [],
|
||||
files: files)
|
||||
|
||||
let bugReport = await BugReport(userID: clientProxy?.userID,
|
||||
deviceID: clientProxy?.deviceID,
|
||||
ed25519: clientProxy?.ed25519Base64(),
|
||||
curve25519: clientProxy?.curve25519Base64(),
|
||||
text: context.reportText,
|
||||
logFiles: context.sendingLogsEnabled ? logFiles : nil,
|
||||
canContact: context.canContact,
|
||||
githubLabels: [],
|
||||
files: files)
|
||||
|
||||
switch await bugReportService.submitBugReport(bugReport,
|
||||
progressListener: progressSubject) {
|
||||
|
||||
@@ -68,7 +68,7 @@ class BugReportService: NSObject, BugReportServiceProtocol {
|
||||
fatalError("No bug report URL set, the screen should not be shown in this case.")
|
||||
}
|
||||
|
||||
let bugReport = appHooks.bugReportHook.update(bugReport)
|
||||
var bugReport = appHooks.bugReportHook.update(bugReport)
|
||||
|
||||
var params = [
|
||||
MultipartFormData(key: "text", type: .text(value: bugReport.text)),
|
||||
@@ -77,6 +77,8 @@ class BugReportService: NSObject, BugReportServiceProtocol {
|
||||
|
||||
if let userID = bugReport.userID {
|
||||
params.append(.init(key: "user_id", type: .text(value: userID)))
|
||||
} else {
|
||||
bugReport.githubLabels.append("login")
|
||||
}
|
||||
|
||||
if let deviceID = bugReport.deviceID {
|
||||
@@ -88,8 +90,17 @@ class BugReportService: NSObject, BugReportServiceProtocol {
|
||||
params.append(.init(key: "device_keys", type: .text(value: compactKeys)))
|
||||
}
|
||||
|
||||
if let crashEventID = lastCrashEventID {
|
||||
params.append(MultipartFormData(key: "crash_report", type: .text(value: "<https://sentry.tools.element.io/organizations/element/issues/?project=44&query=\(crashEventID)>")))
|
||||
bugReport.githubLabels.append("crash")
|
||||
}
|
||||
|
||||
params.append(contentsOf: defaultParams)
|
||||
|
||||
if InfoPlistReader.main.baseBundleIdentifier == "io.element.elementx.nightly" {
|
||||
bugReport.githubLabels.append("Nightly")
|
||||
}
|
||||
|
||||
for label in bugReport.githubLabels {
|
||||
params.append(MultipartFormData(key: "label", type: .text(value: label)))
|
||||
}
|
||||
@@ -101,10 +112,6 @@ class BugReportService: NSObject, BugReportServiceProtocol {
|
||||
}
|
||||
}
|
||||
|
||||
if let crashEventID = lastCrashEventID {
|
||||
params.append(MultipartFormData(key: "crash_report", type: .text(value: "<https://sentry.tools.element.io/organizations/element/issues/?project=44&query=\(crashEventID)>")))
|
||||
}
|
||||
|
||||
for url in bugReport.files {
|
||||
params.append(MultipartFormData(key: "file", type: .file(url: url)))
|
||||
}
|
||||
|
||||
Submodule Enterprise updated: 0c0b8ae6bc...233f49aa20
Reference in New Issue
Block a user