diff options
author | Sacha Chua <sacha@sachachua.com> | 2023-11-08 16:23:37 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2023-11-08 16:23:37 -0500 |
commit | e8080e1b27388dc11cef9b72bd741d41ec58545e (patch) | |
tree | 764cde08a6d85950981cb2a5859fd4796c90bbde | |
parent | 2ad09add1a8a6eab44aea219920f99f80b08d361 (diff) | |
download | emacsconf-el-e8080e1b27388dc11cef9b72bd741d41ec58545e.tar.xz emacsconf-el-e8080e1b27388dc11cef9b72bd741d41ec58545e.zip |
always cache video data
-rw-r--r-- | emacsconf-publish.el | 7 |
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) |