Redirect UISI autorageshakes to separate repo and add more labels for filtering (#7598)
This adds a new key `uisi_autorageshake_app` to config.json, holding an optional custom app name for UISI autorageshakes so that the rageshake server can file them separately from user-submitted rageshakes.
This commit is contained in:
parent
2f209c4346
commit
31e6b942f2
3 changed files with 13 additions and 8 deletions
|
@ -98,7 +98,8 @@ export default class AutoRageshakeStore extends AsyncStoreWithClient<IState> {
|
|||
const rageshakeURL = await sendBugReport(SdkConfig.get().bug_report_endpoint_url, {
|
||||
userText: "Auto-reporting decryption error (recipient)",
|
||||
sendLogs: true,
|
||||
label: "Z-UISI",
|
||||
labels: ["Z-UISI", "web", "uisi-recipient"],
|
||||
customApp: SdkConfig.get().uisi_autorageshake_app,
|
||||
customFields: { "auto_uisi": JSON.stringify(eventInfo) },
|
||||
});
|
||||
|
||||
|
@ -123,7 +124,8 @@ export default class AutoRageshakeStore extends AsyncStoreWithClient<IState> {
|
|||
await sendBugReport(SdkConfig.get().bug_report_endpoint_url, {
|
||||
userText: `Auto-reporting decryption error (sender)\nRecipient rageshake: ${recipientRageshake}`,
|
||||
sendLogs: true,
|
||||
label: "Z-UISI",
|
||||
labels: ["Z-UISI", "web", "uisi-sender"],
|
||||
customApp: SdkConfig.get().uisi_autorageshake_app,
|
||||
customFields: {
|
||||
"recipient_rageshake": recipientRageshake,
|
||||
"auto_uisi": JSON.stringify(messageContent),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue