Add a few more labels when sending a rageshake. (#4284)

This commit is contained in:
Doug
2025-07-03 12:09:27 +01:00
committed by GitHub
parent 952212ec9c
commit e50db1367e
3 changed files with 23 additions and 17 deletions

View File

@@ -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) {

View File

@@ -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)))
}