diff options
author | Thanos Apollo <[email protected]> | 2024-01-09 20:36:12 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-09 20:36:12 +0200 |
commit | 27b94d889ea850e5c81dcbec3d7f7cbb6e8d83d4 (patch) | |
tree | 049ba35fd43400f74cdf00d3af05a087578c0b17 | |
parent | 7d6985302422fdc8df0562aee223d1233d8a0946 (diff) |
yeetube-get-content: format view-count before push
-rw-r--r-- | yeetube.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -284,7 +284,7 @@ then for item." (- (search-forward ",") 2)))) (push (list :title title :videoid videoid - :view-count view-count + :view-count (format "% 10s" (replace-regexp-in-string "[^0-9]" "" view-count)) :duration video-duration :channel channel) yeetube-content)))))))))) |