diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2021-03-10 20:28:08 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2021-03-24 16:42:37 +0100 |
| commit | a34620a0a6bf807bb465597779051566d06aab20 (patch) | |
| tree | 4454bbabc0bc6fff8c28264588297ac791cfca32 /gui/src/shared | |
| parent | 60f78f5d4fdaeeee2e69bbe7c8026130902c80fd (diff) | |
| download | mullvadvpn-a34620a0a6bf807bb465597779051566d06aab20.tar.xz mullvadvpn-a34620a0a6bf807bb465597779051566d06aab20.zip | |
Make problem report IPC calls transfer id instead of path
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/ipc-schema.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/shared/ipc-schema.ts b/gui/src/shared/ipc-schema.ts index 3f0d86d995..5cc347e51e 100644 --- a/gui/src/shared/ipc-schema.ts +++ b/gui/src/shared/ipc-schema.ts @@ -126,7 +126,6 @@ export const ipcSchema = { app: { quit: send<void>(), openUrl: invoke<string, void>(), - openPath: invoke<string, string>(), showOpenDialog: invoke<Electron.OpenDialogOptions, Electron.OpenDialogReturnValue>(), }, tunnel: { @@ -185,7 +184,8 @@ export const ipcSchema = { }, problemReport: { collectLogs: invoke<string[], string>(), - sendReport: invoke<{ email: string; message: string; savedReport: string }, void>(), + sendReport: invoke<{ email: string; message: string; savedReportId: string }, void>(), + viewLog: invoke<string, string>(), }, logging: { log: send<ILogEntry>(), |
