diff --git a/exec/load/podcast_routines.js b/exec/load/podcast_routines.js index d84dc47db2e8fb04cb4d8806c92b5e3ba422b878..0dbec823c410e7e3f00f01005caeaa4921ff9698 100644 --- a/exec/load/podcast_routines.js +++ b/exec/load/podcast_routines.js @@ -59,7 +59,7 @@ function podcast_get_info(base, hdr) if (body == null) return; body = word_wrap(body, 65535, 79, false).replace(/\r/g, ''); - m = body.match(/^[\r\n\s]*([\x00-\xff]+?)[\r\n\s]+(https?:\/\/[^\r\n\s]+)[\r\n\s]*$/); + m = body.match(/^[\r\n\s]*([\x00-\xff]+?)[\r\n\s]+(https?:\/\/[^\r\n\s]+)[\r\n\s]/); if (m==null) return; ret.title = hdr.subject;