diff src/audacious/playlist.c @ 2493:b7f48f00a342 trunk

[svn] - patch from Mark Glines to ad https:// URI support to playlists.
author nenolod
date Sat, 10 Feb 2007 12:29:21 -0800
parents e56a55d07935
children 15a1f5ee4d1c
line wrap: on
line diff
--- a/src/audacious/playlist.c	Fri Feb 09 22:30:10 2007 -0800
+++ b/src/audacious/playlist.c	Sat Feb 10 12:29:21 2007 -0800
@@ -712,6 +712,11 @@
         return TRUE;
     }
 
+    if (r > 6 && str_has_prefix_nocase(p, "https:")) {
+        playlist_load_ins(playlist, filename, pos);
+        return TRUE;
+    }
+
     return FALSE;
 }