From 79d8b95f4ef46200a8eb14ed1b470d017786df7b Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 27 Sep 2020 00:43:17 +1000 Subject: [PATCH] bug: actually use the absolute path we generate for crashpad Fixes #1230 --- app/common/crashpadinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/crashpadinterface.cpp b/app/common/crashpadinterface.cpp index c65db16d0..adc954e49 100644 --- a/app/common/crashpadinterface.cpp +++ b/app/common/crashpadinterface.cpp @@ -86,7 +86,7 @@ bool InitializeCrashpad() bool status = false; if (QFileInfo::exists(handler_abs_path)) { - base::FilePath handler(QSTRING_TO_BASE_STRING(handler_fn)); + base::FilePath handler(QSTRING_TO_BASE_STRING(handler_abs_path)); base::FilePath reports_dir = GenerateReportPathForCrashpad();