diff --git a/src/crashreporter/CrashReporterConfig.h.in b/src/crashreporter/CrashReporterConfig.h.in index a20095172..3dcda4b78 100644 --- a/src/crashreporter/CrashReporterConfig.h.in +++ b/src/crashreporter/CrashReporterConfig.h.in @@ -9,4 +9,6 @@ #define CRASHREPORTER_VERSION_STRING "@MIRALL_VERSION_STRING@" +#define CRASHREPORTER_SUBMIT_URL "http://crash-reports.owncloud.org/submit" + #endif // CRASHREPORTERCONFIG_H diff --git a/src/crashreporter/main.cpp b/src/crashreporter/main.cpp index 84a4cde3e..4b9908691 100644 --- a/src/crashreporter/main.cpp +++ b/src/crashreporter/main.cpp @@ -30,7 +30,7 @@ int main( int argc, char* argv[] ) } // TODO: install socorro .... - CrashReporter reporter( QUrl( "http://crash-reports.tomahawk-player.org/submit" ), app.arguments() ); + CrashReporter reporter( QUrl( CRASHREPORTER_SUBMIT_URL ), app.arguments() ); reporter.setLogo(QPixmap(":/owncloud-icon.png")); reporter.setWindowTitle(CRASHREPORTER_PRODUCT_NAME);