]> git.0d.be Git - empathy.git/commitdiff
update gnome-contacts's desktop file
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 28 Aug 2014 09:13:27 +0000 (11:13 +0200)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Thu, 28 Aug 2014 09:58:19 +0000 (11:58 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=735575

libempathy-gtk/empathy-individual-information-dialog.c

index 2b8d64bd3d85166920ea87b381a4afa6da290b09..22bdb91ee93edab916668ea5bcd6826dd8c4acf6 100644 (file)
@@ -370,7 +370,11 @@ start_gnome_contacts (FolksIndividual *individual,
 
   args = g_strdup_printf ("-i %s", folks_individual_get_id (individual));
 
-  if (!empathy_launch_external_app ("gnome-contacts.desktop", args, &error))
+  /* First try the old desktop name */
+  if (empathy_launch_external_app ("gnome-contacts.desktop", args, &error))
+    goto out;
+
+  if (!empathy_launch_external_app ("org.gnome.Contacts.desktop", args, &error))
     {
       if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
         {
@@ -390,6 +394,7 @@ start_gnome_contacts (FolksIndividual *individual,
         }
     }
 
+out:
   g_free (args);
 }