From f653e6a328df3089f4c54277053f126bcb8c5362 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 27 Jul 2024 12:07:34 +0200 Subject: [PATCH] Update references to the default peekSize --- use/faq.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/use/faq.rst b/use/faq.rst index 1b35ec7..e5fb617 100644 --- a/use/faq.rst +++ b/use/faq.rst @@ -297,15 +297,16 @@ Why doesn't the title snarfer announce links from a particular website (eg. Yout ===================================================================================== Limnoria needs to fetch pages to get their title. But in order to avoid being -overloaded by users, it only fetches the beginning (the first 8kB if I recall -correctly). That's enough to find the title of most pages, but in the last years -Youtube has become so bloated it isn't. +overloaded by users, it only fetches the beginning (16kB as of 2024-07-27, 8kB for +bots created before Limnoria v2022.10.28). +That's enough to find the title of most pages, but in the last years Youtube +has become so bloated it isn't. If you are ok with Limnoria fetching more data when users post URLs, you can use:: config supybot.protocols.http.peekSize 1000000 -This will make it fetch 1MB from every link, instead of the default 8kB. +This will make it fetch 1MB from every link, instead of the default 16kB. This should be enough for Youtube for now. If not enough for other websites, try increasing it further.