From 48d6bfcd064c3b8264bfdfed0f09faa36d076cfc Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Wed, 10 Jan 2007 08:27:42 +0000 Subject: Fix FS#6520, allow search.rock to open .m3u8 playlists. Only the extension check was fixed, so playlists with non-ascii chars probably wont work correclty. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11973 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/search.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/plugins/search.c b/apps/plugins/search.c index b8cc5bff5e..c174abfd24 100644 --- a/apps/plugins/search.c +++ b/apps/plugins/search.c @@ -156,8 +156,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) DEBUGF("%s - %s\n", parameter, &filename[rb->strlen(filename)-4]); /* Check the extension. We only allow .m3u files. */ - if(rb->strcasecmp(&filename[rb->strlen(filename)-4], ".m3u")) { - rb->splash(HZ, true, "Not a .m3u file"); + if(rb->strcasecmp(&filename[rb->strlen(filename)-4], ".m3u") && + rb->strcasecmp(&filename[rb->strlen(filename)-5], ".m3u8")) { + rb->splash(HZ, true, "Not a .m3u or .m3u8 file"); return PLUGIN_ERROR; } -- cgit v1.2.3