summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--app/main.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/main.js b/app/main.js
index 73218a055d..483a79fd5c 100644
--- a/app/main.js
+++ b/app/main.js
@@ -390,7 +390,9 @@ const appDelegate = {
return;
}
- const logFiles = files.filter(file => file.endsWith('.log')).map(f => path.join(appDelegate._logFileLocation, f));
+ const logFiles = files.filter(file => file.endsWith('.log'))
+ .filter(file => !file.startsWith('openvpn'))
+ .map(f => path.join(appDelegate._logFileLocation, f));
const reportPath = path.join(writableDirectory, uuid.v4() + '.report');
const binPath = resolveBin('problem-report');