Format code ordering

This commit is contained in:
ariskotsomitopoulos 2022-04-05 14:51:38 +03:00
parent b5f8d2c91f
commit aef4cce3e7

View File

@ -258,9 +258,9 @@ class BugReporter @Inject constructor(
ReportType.BUG_REPORT -> "[Element] $bugDescription" ReportType.BUG_REPORT -> "[Element] $bugDescription"
ReportType.SUGGESTION -> "[Element] [Suggestion] $bugDescription" ReportType.SUGGESTION -> "[Element] [Suggestion] $bugDescription"
ReportType.SPACE_BETA_FEEDBACK -> "[Element] [spaces-feedback] $bugDescription" ReportType.SPACE_BETA_FEEDBACK -> "[Element] [spaces-feedback] $bugDescription"
ReportType.THREADS_BETA_FEEDBACK -> "[Element] [threads-feedback] $bugDescription"
ReportType.AUTO_UISI_SENDER, ReportType.AUTO_UISI_SENDER,
ReportType.AUTO_UISI -> bugDescription ReportType.AUTO_UISI -> bugDescription
ReportType.THREADS_BETA_FEEDBACK -> "[Element] [threads-feedback] $bugDescription"
} }
// build the multi part request // build the multi part request
@ -341,6 +341,7 @@ class BugReporter @Inject constructor(
} }
ReportType.SUGGESTION -> builder.addFormDataPart("label", "[Suggestion]") ReportType.SUGGESTION -> builder.addFormDataPart("label", "[Suggestion]")
ReportType.SPACE_BETA_FEEDBACK -> builder.addFormDataPart("label", "spaces-feedback") ReportType.SPACE_BETA_FEEDBACK -> builder.addFormDataPart("label", "spaces-feedback")
ReportType.THREADS_BETA_FEEDBACK -> builder.addFormDataPart("label", "threads-feedback")
ReportType.AUTO_UISI -> { ReportType.AUTO_UISI -> {
builder.addFormDataPart("label", "Z-UISI") builder.addFormDataPart("label", "Z-UISI")
builder.addFormDataPart("label", "android") builder.addFormDataPart("label", "android")
@ -351,7 +352,6 @@ class BugReporter @Inject constructor(
builder.addFormDataPart("label", "android") builder.addFormDataPart("label", "android")
builder.addFormDataPart("label", "uisi-sender") builder.addFormDataPart("label", "uisi-sender")
} }
ReportType.THREADS_BETA_FEEDBACK -> builder.addFormDataPart("label", "threads-feedback")
} }
if (getCrashFile().exists()) { if (getCrashFile().exists()) {