From 8de4070f7fc6cf5aceb15794a2579b4e27042d09 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 16 Oct 2012 13:50:13 -0400 Subject: [PATCH] autorunManager: Stop erring on the side of caution for network mounts Every mount that we care about that's local should have a GVolume associated with it. https://bugzilla.gnome.org/show_bug.cgi?id=686241 --- js/ui/components/autorunManager.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/js/ui/components/autorunManager.js b/js/ui/components/autorunManager.js index bf9475970..7709a3d79 100644 --- a/js/ui/components/autorunManager.js +++ b/js/ui/components/autorunManager.js @@ -45,14 +45,12 @@ function isMountRootHidden(root) { } function isMountNonLocal(mount) { - // If the mount doesn't have an associated volume, that means it could - // be a remote filesystem. For certain kinds of local filesystems, - // like digital cameras and music players, there's no associated - // gvfs volume, so err on the side of caution and assume it's a local - // filesystem to allow the prompt. + // If the mount doesn't have an associated volume, that means it's + // an uninteresting filesystem. Most devices that we care about will + // have a mount, like media players and USB sticks. let volume = mount.get_volume(); if (volume == null) - return false; + return true; return (volume.get_identifier("class") == "network"); }