desktop/source/app/crashreport.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit 8daa5551dee2669a47d70c65a0581a9de40badbb Author: Thorsten Behrens <thorsten.behr...@cib.de> AuthorDate: Wed Apr 22 01:10:13 2020 +0200 Commit: Balazs Varga <balazs.va...@collabora.com> CommitDate: Wed Aug 27 16:30:13 2025 +0200 Get local, no-upload crash dumps working again With this, CrashDumpEnable=true and CrashDumpUrl missing will create local dmp files, but never upload/present GUI for it. Change-Id: I0bae48a0accace01dc8507cccb2a7b02a4de61a0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156491 Reviewed-by: Gabor Kelemen <kelem...@ubuntu.com> Tested-by: Thorsten Behrens <thorsten.behr...@allotropia.de> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175005 Tested-by: Balazs Varga <balazs.varga.ext...@allotropia.de> Reviewed-by: Balazs Varga <balazs.varga.ext...@allotropia.de> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190017 Tested-by: Balazs Varga <balazs.va...@collabora.com> Reviewed-by: Balazs Varga <balazs.va...@collabora.com> diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx index bba15c814926..98d4fe25befc 100644 --- a/desktop/source/app/crashreport.cxx +++ b/desktop/source/app/crashreport.cxx @@ -138,7 +138,10 @@ void CrashReporter::writeCommonInfo() rtl::Bootstrap::get("CrashDumpUrl", url); if (url.isEmpty()) { - // no url in config, bail out + // no url in config, bail out, but still set proper crash + // directory for local dump generation (incase CrashDumpEnable + // is on + updateMinidumpLocation(); mbInit = false; return; }