summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcaja-private/caja-file-operations.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libcaja-private/caja-file-operations.c b/libcaja-private/caja-file-operations.c
index ad525d2d..30602bc1 100644
--- a/libcaja-private/caja-file-operations.c
+++ b/libcaja-private/caja-file-operations.c
@@ -2134,7 +2134,10 @@ unmount_mount_callback (GObject *source_object,
if (data->eject) {
unmounted = g_mount_eject_with_operation_finish (G_MOUNT (source_object),
res, &error);
- caja_application_notify_unmount_show ("It is now safe to remove the drive");
+ if ((!error) || (unmounted == TRUE)){
+ caja_application_notify_unmount_show ("It is now safe to remove the drive");
+ }
+
} else {
unmounted = g_mount_unmount_with_operation_finish (G_MOUNT (source_object),
res, &error);