[gnome-shell] autorunManager: Stop erring on the side of caution for network mounts
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] autorunManager: Stop erring on the side of caution for network mounts
- Date: Wed, 17 Oct 2012 16:24:57 +0000 (UTC)
commit 8de4070f7fc6cf5aceb15794a2579b4e27042d09
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Tue Oct 16 13:50:13 2012 -0400
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 files changed, 4 insertions(+), 6 deletions(-)
---
diff --git a/js/ui/components/autorunManager.js b/js/ui/components/autorunManager.js
index bf94759..7709a3d 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");
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]