From 866e0e1670f79653203a3da65096841ab37fc903 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 31 Aug 2014 19:49:39 +0200 Subject: player: always load playlists Until now, you had to use --load-unsafe-playlists or --playlist to get playlists loaded. Change this and always load playlists by default. This still attempts to reject unsafe URLs. For example, trying to invoke libavdevice pseudo-demuxer is explicitly prevented. Local paths and any http links (and some more) are always allowed. --- stream/stream_file.c | 1 + 1 file changed, 1 insertion(+) (limited to 'stream/stream_file.c') diff --git a/stream/stream_file.c b/stream/stream_file.c index 12bea3554c..6a10114832 100644 --- a/stream/stream_file.c +++ b/stream/stream_file.c @@ -281,4 +281,5 @@ const stream_info_t stream_info_file = { .open = open_f, .protocols = (const char*const[]){ "file", "", NULL }, .can_write = true, + .is_safe = true, }; -- cgit v1.2.3