diff options
author | Thanos Apollo <[email protected]> | 2023-07-06 08:42:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-07-06 08:42:48 +0300 |
commit | 3b77113ccbf62eb0441afa247d362f3d501b1c57 (patch) | |
tree | 7ae3a93c5dd134491d95b084e7ff378a9dc47629 | |
parent | f9e86efdaae673ad82a07518b97f868940e1eb9c (diff) |
yeetube-results-limit: default to 10
Some invidious instances don't retrieve enough results for certain
queries.
It's recommended to keep it as 10 if you are using invidious.
-rw-r--r-- | yeetube.el | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -40,8 +40,12 @@ :group 'external :prefix "yeetube-") -(defcustom yeetube-results-limit 15 - "Define the amount of search results." +(defcustom yeetube-results-limit 10 + "Define the amount of search results. + +Note: +If you are using an invidious instance, it's recommended to keep it +below 15." :type 'number :safe #'numberp :group 'yeetube) |