mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-15 14:56:42 +00:00
feat(GODT-2842): Implement Bug Report Fallback notification.
This commit is contained in:
@ -1130,6 +1130,10 @@ void GRPCClient::processAppEvent(AppEvent const &event) {
|
||||
this->logTrace("App event received: ShowMainWindow.");
|
||||
emit showMainWindow();
|
||||
break;
|
||||
case AppEvent::kReportBugFallback:
|
||||
this->logTrace("App event received: ReportBugFallback.");
|
||||
emit reportBugFallback();
|
||||
break;
|
||||
default:
|
||||
this->logError("Unknown App event received.");
|
||||
}
|
||||
|
||||
@ -102,6 +102,7 @@ signals: // app related signals
|
||||
void reportBugFinished();
|
||||
void reportBugSuccess();
|
||||
void reportBugError();
|
||||
void reportBugFallback();
|
||||
void showMainWindow();
|
||||
|
||||
// cache related calls
|
||||
|
||||
Reference in New Issue
Block a user