summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2017-03-29 16:55:17 +0200
committerAndras Timar <andras.timar@collabora.com>2021-03-30 16:33:42 +0200
commitb122a9976b2705f823df87d4574a96e270a42752 (patch)
tree09bc526c62782198f6629f7366d7bb44e61374e2 /desktop
parent4be4db10e3aa5aabda2c5ce04a461123368ed7f2 (diff)
[cp] enable crashreport on Windows
(cherry picked from commit ce263269dff121af85634ada7870f33632e02bdd) Change-Id: I55df3da63919f76afcd4905b1898287e26c8c4f1 Reviewed-on: https://gerrit.libreoffice.org/78401 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94477 Tested-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/crashreport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index 4a5f93c21117..00186075d32a 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -116,7 +116,7 @@ void CrashReporter::writeCommonInfo()
ucbhelper::InternetProxyDecider proxy_decider(::comphelper::getProcessComponentContext());
const OUString protocol = "https";
- const OUString url = "crashreport.libreoffice.org";
+ const OUString url = "crashreport.collaboraoffice.com";
const sal_Int32 port = 443;
const ucbhelper::InternetProxyServer proxy_server = proxy_decider.getProxy(protocol, url, port);
@@ -127,7 +127,7 @@ void CrashReporter::writeCommonInfo()
maKeyValues.clear();
// limit the amount of code that needs to be executed before the crash reporting
- addKeyValue("ProductName", "LibreOffice", AddItem);
+ addKeyValue("ProductName", "CollaboraOffice", AddItem);
addKeyValue("Version", LIBO_VERSION_DOTTED, AddItem);
addKeyValue("BuildID", utl::Bootstrap::getBuildIdData(""), AddItem);
addKeyValue("URL", protocol + "://" + url + "/submit/", AddItem);