]> spindle.queued.net Git - midori/commitdiff
Don't error when saving addons config in test
authorChristian Dywan <christian@twotoasts.de>
Sun, 16 Jan 2011 13:03:02 +0000 (14:03 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 16 Jan 2011 13:05:23 +0000 (14:05 +0100)
extensions/addons.c

index 8fcdee3c62e218c6c3a1072c688f0a6a0bd9ff51..6839ed483d0e126a8018f6f865f9408f224bfca5 100644 (file)
@@ -1632,7 +1632,8 @@ addons_save_settings (MidoriApp*       app,
     config_file = g_build_filename (config_dir, "addons", NULL);
     katze_mkdir_with_parents (config_dir, 0700);
     sokoke_key_file_save_to_file (keyfile, config_file, &error);
-    if (error)
+    /* If the folder is /, this is a test run, thus no error */
+    if (error && !g_str_equal (config_dir, "/"))
     {
         g_warning (_("The configuration of the extension '%s' couldn't be saved: %s\n"),
                     _("User addons"), error->message);