Commit 5216cfb3 authored by Max Kellermann's avatar Max Kellermann

playlist_print: use playlist_open_any()

Allow printing remote playlists with the commands "listplaylist" and "listplaylistinfo".
parent 373d1843
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "playlist_print.h" #include "playlist_print.h"
#include "playlist_list.h" #include "playlist_list.h"
#include "playlist_plugin.h" #include "playlist_plugin.h"
#include "playlist_mapper.h" #include "playlist_any.h"
#include "playlist_song.h" #include "playlist_song.h"
#include "queue_print.h" #include "queue_print.h"
#include "stored_playlist.h" #include "stored_playlist.h"
...@@ -170,7 +170,7 @@ bool ...@@ -170,7 +170,7 @@ bool
playlist_file_print(struct client *client, const char *uri, bool detail) playlist_file_print(struct client *client, const char *uri, bool detail)
{ {
struct input_stream *is; struct input_stream *is;
struct playlist_provider *playlist = playlist_mapper_open(uri, &is); struct playlist_provider *playlist = playlist_open_any(uri, &is);
if (playlist == NULL) if (playlist == NULL)
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment