mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-17 03:11:51 +03:00
Add CRASHREPORTER_SUBMIT_URL define and default it to some placeholder owncloud url
This commit is contained in:
parent
2b4849a2fa
commit
34042028b3
2 changed files with 3 additions and 1 deletions
|
@ -9,4 +9,6 @@
|
|||
|
||||
#define CRASHREPORTER_VERSION_STRING "@MIRALL_VERSION_STRING@"
|
||||
|
||||
#define CRASHREPORTER_SUBMIT_URL "http://crash-reports.owncloud.org/submit"
|
||||
|
||||
#endif // CRASHREPORTERCONFIG_H
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue