diff options
author | Sacha Chua <sacha@sachachua.com> | 2023-10-24 14:12:20 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2023-10-24 14:12:20 -0400 |
commit | 8c0536ea73ba73d1204d96fd4b47b43127134ec4 (patch) | |
tree | 45927b150461a89d8b09cabe938041016f733582 | |
parent | 23c7e153ee5c84baa6bf78f2057979b616cf4853 (diff) | |
download | emacsconf-el-8c0536ea73ba73d1204d96fd4b47b43127134ec4.tar.xz emacsconf-el-8c0536ea73ba73d1204d96fd4b47b43127134ec4.zip |
include video file in list of resources for easier download
-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) |