[epiphany/gnome-42] window-commands: fix warning when opening import dialog
- From: Michael Catanzaro <mcatanzaro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany/gnome-42] window-commands: fix warning when opening import dialog
- Date: Wed, 3 Aug 2022 19:30:45 +0000 (UTC)
commit fa1a97b7bdd2a28bcd0e2c87df60a609571ecfbe
Author: Michael Catanzaro <mcatanzaro redhat com>
Date: Fri Jun 3 11:32:14 2022 -0500
window-commands: fix warning when opening import dialog
This function is called to determine whether there exist Firefox
profiles or not, so it'd better not warn when there are none. This
condition can be detected via the NULL return value.
(cherry picked from commit ef34b5f53a921a417c23eddb32d89900561b0563)
src/window-commands.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/window-commands.c b/src/window-commands.c
index 8b138257d..5ca387e02 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -149,7 +149,7 @@ get_firefox_profiles (void)
NULL);
keyfile = g_key_file_new ();
g_key_file_load_from_file (keyfile, filename, G_KEY_FILE_NONE, &error);
- if (error) {
+ if (error && !g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) {
g_warning ("Failed to load %s: %s", filename, error->message);
return NULL;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]