summaryrefslogtreecommitdiffstats
path: root/emacsconf-publish.el
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2023-11-08 16:23:37 -0500
committerSacha Chua <sacha@sachachua.com>2023-11-08 16:23:37 -0500
commite8080e1b27388dc11cef9b72bd741d41ec58545e (patch)
tree764cde08a6d85950981cb2a5859fd4796c90bbde /emacsconf-publish.el
parent2ad09add1a8a6eab44aea219920f99f80b08d361 (diff)
downloademacsconf-el-e8080e1b27388dc11cef9b72bd741d41ec58545e.tar.xz
emacsconf-el-e8080e1b27388dc11cef9b72bd741d41ec58545e.zip
always cache video data
Diffstat (limited to 'emacsconf-publish.el')
-rw-r--r--emacsconf-publish.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el
index 36a8e4c..95cfecc 100644
--- a/emacsconf-publish.el
+++ b/emacsconf-publish.el
@@ -1829,12 +1829,11 @@ This video is available under the terms of the Creative Commons Attribution-Shar
result))
;; (emacsconf-publish-video-description (emacsconf-find-talk-info "async") t)
-(defun emacsconf-cache-all-video-data (&optional force)
- (interactive (list current-prefix-arg))
+(defun emacsconf-cache-all-video-data ()
+ (interactive)
(mapc
(lambda (talk)
- (when (and (plist-get talk :file-prefix)
- (or force (null (plist-get talk :video-file-size))))
+ (when (plist-get talk :file-prefix)
(emacsconf-publish-cache-video-data talk)))
(emacsconf-get-talk-info)))
;; (emacsconf-cache-all-video-data t)