From 5cf429f962d7653abfb231e42790a8d37a29cf4b Mon Sep 17 00:00:00 2001 From: Demigod345 Date: Mon, 22 Jan 2024 15:29:45 +0530 Subject: [PATCH] window: Change issue-url for "Report An Issue" "Report An Issue" redirects to https://gitlab.gnome.org/GNOME/nautilus/-/issues/new directly. However, the users that are not logged in, would be greeted by a login screen. This fix would redirect all users to see all the existing issues, irrespective of whether they are logged in or not. Fixes: #3220 --- src/nautilus-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nautilus-window.c b/src/nautilus-window.c index d7504a2c9a..879c75428b 100644 --- a/src/nautilus-window.c +++ b/src/nautilus-window.c @@ -2494,7 +2494,7 @@ nautilus_window_show_about_dialog (NautilusWindow *window) "developer-name", _("The GNOME Project"), "version", VERSION, "website", "https://wiki.gnome.org/action/show/Apps/Files", - "issue-url", "https://gitlab.gnome.org/GNOME/nautilus/-/issues/new", + "issue-url", "https://gitlab.gnome.org/GNOME/nautilus/-/issues", "support-url", "https://discourse.gnome.org/tag/nautilus", "debug-info", debug_info, "copyright", "© 1999 The Files Authors", -- GitLab