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 548046 - Ignore PDF files when importing media
Ignore PDF files when importing media
Status: RESOLVED FIXED
Product: rhythmbox
Classification: Other
Component: Importing
HEAD
Other All
: Normal minor
: ---
Assigned To: RhythmBox Maintainers
RhythmBox Maintainers
Depends on: 549814
Blocks:
 
 
Reported: 2008-08-16 17:44 UTC by John Millikin
Modified: 2008-08-30 22:39 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description John Millikin 2008-08-16 17:44:13 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"
 };
 
 /*
Comment 1 Jonathan Matthew 2008-08-22 11:40:55 UTC
This won't help while GStreamer doesn't have a PDF typefinder.
Comment 2 Jonathan Matthew 2008-08-30 22:39:51 UTC
Now that it has one, I've committed this change.  Thanks.