aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-02-25 04:32:22 +0200
committerThanos Apollo <[email protected]>2024-02-25 04:32:22 +0200
commitf1d8cb5e5590497d5dc8fc80414fbc5a19a41b86 (patch)
tree96de6db034780108d8d148fe6c538c5901fb2710 /yeetube.el
parent6b2ad1fffe759494075793ccb53c17ca2dc2cb33 (diff)
yeetube-search: download thumbnails & use pop-to-buffer
Diffstat (limited to 'yeetube.el')
-rw-r--r--yeetube.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/yeetube.el b/yeetube.el
index b17acee..2e33e63 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -346,11 +346,11 @@ This is used to download thumbnails from `yeetube-content', within
(decode-coding-region (point-min) (point-max) 'utf-8)
(goto-char (point-min))
(toggle-enable-multibyte-characters)
- (yeetube-get-content)))
- ;; (yeetube-get-thumbnails yeetube-content) ;; download thumbnails
+ (yeetube-get-content))
+ (yeetube-get-thumbnails yeetube-content)) ;; download thumbnails
;; unfortunately we can't use images them with tabulated list
(with-current-buffer
- (switch-to-buffer (get-buffer-create (concat "*yeetube*")))
+ (pop-to-buffer-same-window "*yeetube*")
(yeetube-mode)))
;;;###autoload