From ae7a09a0870886cabdda508c86f164a05c7ffca0 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Thu, 22 Mar 2012 21:26:49 +0100 Subject: [PATCH] Try to use ubuntu-bug if it exists --- midori/midori-browser.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 9008f28e..2a120de2 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -4812,7 +4812,7 @@ _action_help_link_activate (GtkAction* action, MidoriBrowser* browser) { const gchar* action_name; - const gchar* uri; + const gchar* uri = NULL; gint n; #if defined (G_OS_WIN32) && defined (DOCDIR) gchar* free_uri = NULL; @@ -4847,9 +4847,10 @@ _action_help_link_activate (GtkAction* action, #endif } else if (!strncmp ("HelpBugs", action_name, 8)) - uri = PACKAGE_BUGREPORT; - else - uri = NULL; + { + if (!g_spawn_command_line_async ("ubuntu-bug " PACKAGE_NAME, NULL)) + uri = PACKAGE_BUGREPORT; + } if (uri) {