From b579fa82fe4559db72e6583745fef206c2b59db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Mon, 2 May 2016 14:45:44 +0000 Subject: [PATCH] Use default VFS, not a local one (it has no network) --- gtk/gtkplacesview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkplacesview.c b/gtk/gtkplacesview.c index 19af4ed570..0bbf66931f 100644 --- a/gtk/gtkplacesview.c +++ b/gtk/gtkplacesview.c @@ -1009,7 +1009,7 @@ fetch_networks (GtkPlacesView *view) gboolean found; priv = gtk_places_view_get_instance_private (view); - supported_uris = g_vfs_get_supported_uri_schemes (g_vfs_get_local ()); + supported_uris = g_vfs_get_supported_uri_schemes (g_vfs_get_default ()); for (found = FALSE; !found && supported_uris && supported_uris[0]; supported_uris++) if (g_strcmp0 (supported_uris[0], "network") == 0)