aboutsummaryrefslogtreecommitdiffstats
path: root/livie-channel.el
diff options
context:
space:
mode:
Diffstat (limited to 'livie-channel.el')
-rw-r--r--livie-channel.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/livie-channel.el b/livie-channel.el
index ebf0e22..147a101 100644
--- a/livie-channel.el
+++ b/livie-channel.el
@@ -50,19 +50,19 @@
(defun livie--channel-query (uid n sort)
"Query youtube for UID videos, return the Nth page of results, sorted bv SORT."
(let ((videos (livie--API-call (concat "channels/videos/" uid)
- `(("page" ,n)
- ("sort_by" ,sort)
- ("fields" ,livie-default-video-query-fields)))))
+ `(("page" ,n)
+ ("sort_by" ,sort)
+ ("fields" ,livie-default-video-query-fields)))))
(dotimes (i (length videos))
(let ((v (aref videos i)))
(aset videos i
(livie-video--create :title (assoc-default 'title v)
- :author (assoc-default 'author v)
- :authorId (assoc-default 'authorId v)
- :length (assoc-default 'lengthSeconds v)
- :id (assoc-default 'videoId v)
- :views (assoc-default 'viewCount v)
- :published (assoc-default 'published v)))))
+ :author (assoc-default 'author v)
+ :authorId (assoc-default 'authorId v)
+ :length (assoc-default 'lengthSeconds v)
+ :id (assoc-default 'videoId v)
+ :views (assoc-default 'viewCount v)
+ :published (assoc-default 'published v)))))
videos))
(defun livie-channel ()