diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-01-10 08:27:42 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-01-10 08:27:42 +0000 |
| commit | 48d6bfcd064c3b8264bfdfed0f09faa36d076cfc (patch) | |
| tree | e3042e1b7916f4b802ae45444e782364edcf8690 /apps/plugins | |
| parent | 0e4bc2b395d1ca6ce97dff7830cd3de197446c56 (diff) | |
| download | rockbox-48d6bfcd064c3b8264bfdfed0f09faa36d076cfc.zip rockbox-48d6bfcd064c3b8264bfdfed0f09faa36d076cfc.tar.gz rockbox-48d6bfcd064c3b8264bfdfed0f09faa36d076cfc.tar.bz2 rockbox-48d6bfcd064c3b8264bfdfed0f09faa36d076cfc.tar.xz | |
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
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/search.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/search.c b/apps/plugins/search.c index b8cc5bf..c174abf 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; } |