Make sure StoredPlaylists always contain UTF-8 paths that are either
relative paths in the DB or URLs. The main functional difference is that playlistmove and playlistdelete will rewrite playlists in the correct encoding and remove invalid lines instead of potentially modifying them. The specific changes are: appendSongToStoredPlaylist: * Don't convert to FS charset * Don't prepend music_directory if saving absolute paths writeStoredPlaylistToPath: * Convert to FS charset * Prepend music_directory if saving absolute paths loadStoredPlaylist: * Make sure each line is either in the DB or a URL loadPlaylist: * Don't bother checking paths, since it's done in loadStoredPlaylist now git-svn-id: https://svn.musicpd.org/mpd/trunk@6266 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
@@ -1434,9 +1434,7 @@ int loadPlaylist(int fd, char *utf8file)
|
||||
node = sp->list->firstNode;
|
||||
while (node != NULL) {
|
||||
char *temp = node->data;
|
||||
if (!getSongFromDB(temp) && !isRemoteUrl(temp)) {
|
||||
|
||||
} else if ((addToPlaylist(STDERR_FILENO, temp, 0)) < 0) {
|
||||
if ((addToPlaylist(STDERR_FILENO, temp, 0)) < 0) {
|
||||
/* for windows compatibility, convert slashes */
|
||||
char *temp2 = xstrdup(temp);
|
||||
char *p = temp2;
|
||||
|
Reference in New Issue
Block a user