GNOME Bugzilla – Bug 728330
Crash when the name of the new playlist contains special characters
Last modified: 2014-06-08 16:32:32 UTC
When we open the Add to Playlists dialog then create a new playlist with a slash in the name, gnome-music crashes: Traceback (most recent call last):
+ Trace 233476
retval = fn(*v, **k)
playlist.create_playlist(editable.get_text())
parser.save(playlist, pl_file, name, TotemPlParser.ParserType.PLS)
We should strip or escape GLib.DIR_SEPARATOR ("/").
Agreed, though we should make it generic, I'm sure there a glib-compatible way to make nice filenames for our playlists
We could also use Tracker instead to save playlists, which removes restrictions for filenames.
Fixed by porting playlists to Tracker (bug 729311).