diff options
Diffstat (limited to '')
-rw-r--r-- | emacsconf-publish.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 7a55a62..4594ea1 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -1091,8 +1091,7 @@ Entries are sorted chronologically, with different tracks interleaved." (defun emacsconf-publish-talk-files (talk files) (seq-filter (lambda (o) - (and (string-match (concat "^" (regexp-quote (plist-get talk :file-prefix))) o) - (not (string= (plist-get talk :video-file) o)))) + (string-match (concat "^" (regexp-quote (plist-get talk :file-prefix))) o)) files)) (defun emacsconf-sum (field talks) |