diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-02-27 14:30:12 +0100 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-02-27 16:19:23 +0100 |
| commit | ce7f78de68c7dd1aaf9e4aeed969e2e58b91621e (patch) | |
| tree | 47d3bbe5bfbd953b4e9920436f8c240184608fbd | |
| parent | 2e635e146ebb6d83c7c057941409aee9aee5eeb2 (diff) | |
| download | mullvadvpn-ce7f78de68c7dd1aaf9e4aeed969e2e58b91621e.tar.xz mullvadvpn-ce7f78de68c7dd1aaf9e4aeed969e2e58b91621e.zip | |
Change extension back to .log because macOS does not recognize .report
and brings up the dialog of choosing a program to open the log file
| -rw-r--r-- | app/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.js b/app/main.js index 2b056680c9..3c539dacab 100644 --- a/app/main.js +++ b/app/main.js @@ -115,7 +115,7 @@ const appDelegate = { const logFiles = files.filter(file => file.endsWith('.log')) .map(f => path.join(appDelegate._logFileLocation, f)); - const reportPath = path.join(writableDirectory, uuid.v4() + '.report'); + const reportPath = path.join(writableDirectory, uuid.v4() + '.log'); const binPath = resolveBin('problem-report'); let args = [ |
