| Summary: | existing playlist breaks at adding new songs | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Harald Sitter <sitter> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.3-SVN | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Harald Sitter
2005-07-28 16:22:19 UTC
Confirmed! This must be fixed immediatelly. SVN commit 443905 by aoliveira:
Fixing a typo that would make amaroK break .m3u playlists, saving them with other format.
BUG: 109774
M +1 -1 playlistbrowser.cpp
--- trunk/extragear/multimedia/amarok/src/playlistbrowser.cpp #443904:443905
@@ -1460,7 +1460,7 @@
//save the modified playlist in m3u or pls format
const QString ext = fileExtension( item->url().path() );
- if( ext.lower() == ".m3u" )
+ if( ext.lower() == "m3u" )
saveM3U( item, append );
else
savePLS( item, append );
|