After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 548963 - After inserting a Audio CD, nautilus will produce a error message: "Unabled to guess content type for mount: mount doesn't implement content type guessing"
After inserting a Audio CD, nautilus will produce a error message: "Unabled ...
Status: RESOLVED NOTABUG
Product: nautilus
Classification: Core
Component: [obsolete] GIO
2.23.x
Other All
: Normal critical
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-08-22 08:38 UTC by Jerry Yu
Modified: 2008-08-26 02:54 UTC
See Also:
GNOME target: ---
GNOME version: 2.21/2.22



Description Jerry Yu 2008-08-22 08:38:37 UTC
Please describe the problem:
Ideally, after inserting a audio CD, gio will emit a mount-added signal, then it will trigger a greeting dialog to pop up. However, this doesn't happen in my actual case.
After debugging, in autorun_guessed_content_type_callback(), it will go into if(error != NULL) clause to output the above warning message. Ideally, it should go into the else clause. Here the cause is that error != NULL, and the error is a output value of g_mount_guess_content_type_finish.
In the description of  g_mount_guess_content_type_finish, there's the following lines:
* Finishes guessing content types of @mount. If any errors occured
* during the operation, @error will be set to contain the errors and
* %FALSE will be returned. In particular, you may get an 
* %G_IO_ERROR_NOT_SUPPORTED if the mount does not support content 
* guessing.

Before that warning message, nautilus also output another warning message: " WARNING **: Unable to add monitor: Not supported". 

So, is the root cause here that the mount does not support content guessing? 


Steps to reproduce:
1. 
2. 
3. 


Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Jerry Yu 2008-08-26 02:54:39 UTC
After upgrading gvfs to the latest version, 0.99.5, it works now.