playlist: Unconditionally strip bogus dirs in playlist_peek()

The intent behind the check is to only do this if the filename
comes from an on-disk file. With the RAM buffer is gone this is
now "always" the case.

Change-Id: I4c26e32c482dde176b69a6071e9562e9955d7171
This commit is contained in:
Aidan MacDonald 2023-03-21 12:31:12 +00:00
parent aab6a44fc5
commit a4cfa8ae6a

View file

@ -3149,8 +3149,6 @@ const char* playlist_peek(int steps, char* buf, size_t buf_size)
temp_ptr = buf;
if (!playlist->dirplay || control_file)
{
/* remove bogus dirs from beginning of path
(workaround for buggy playlist creation tools) */
while (temp_ptr)
@ -3168,7 +3166,6 @@ const char* playlist_peek(int steps, char* buf, size_t buf_size)
of playlist */
return buf;
}
}
return temp_ptr;
}