diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-17 00:47:56 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-17 03:01:54 +0200 |
commit | 8948d436572fcff6a7298872a33ca4b6fa2f8b61 (patch) | |
tree | 368db75d6a6fe09d5a3a7767ad7a10d377e0bb3d /desktop | |
parent | dd239283664e79337d385a63a18eb676d8688314 (diff) |
submit crash reports using https
Change-Id: I98e0af47f984d5327e23bfee6d4a27052b848699
Reviewed-on: https://gerrit.libreoffice.org/36591
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/crashreport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx index a12249da9096..373793f94470 100644 --- a/desktop/source/app/crashreport.cxx +++ b/desktop/source/app/crashreport.cxx @@ -75,7 +75,7 @@ void CrashReporter::writeCommonInfo() minidump_file << "ProductName=LibreOffice\n"; minidump_file << "Version=" LIBO_VERSION_DOTTED "\n"; minidump_file << "BuildID=" << utl::Bootstrap::getBuildIdData("") << "\n"; - minidump_file << "URL=http://crashreport.libreoffice.org/submit/\n"; + minidump_file << "URL=https://crashreport.libreoffice.org/submit/\n"; for (auto& keyValue : maKeyValues) { writeToStream(minidump_file, keyValue.first, keyValue.second); |