GNOME Bugzilla – Bug 548046
Ignore PDF files when importing media
Last modified: 2008-08-30 22:39:51 UTC
application/pdf is not one of the ignored MIME-types. This causes the "Import Errors" list to appear whenever PDF files, such as sheet music or lyrics, are present in the music directories. Other information: === modified file 'metadata/rb-metadata-gst.c' --- metadata/rb-metadata-gst.c 2008-07-29 13:17:53 +0000 +++ metadata/rb-metadata-gst.c 2008-08-16 17:41:19 +0000 @@ -60,7 +60,8 @@ "application/xml", "application/zip", "application/x-executable", - "application/x-bzip" + "application/x-bzip", + "application/pdf" }; /*
This won't help while GStreamer doesn't have a PDF typefinder.
Now that it has one, I've committed this change. Thanks.