1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
DanielnetoDotCom 2020-10-24 15:38:26 -03:00
parent 36d4306b7f
commit c1b141ef1e

View file

@ -2244,6 +2244,9 @@ function isBot() {
if (empty($_SERVER['HTTP_USER_AGENT'])) { if (empty($_SERVER['HTTP_USER_AGENT'])) {
return true; return true;
} }
if(isAVideoEncoder()){
return false;
}
// User lowercase string for comparison. // User lowercase string for comparison.
$user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); $user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
// A list of some common words used only for bots and crawlers. // A list of some common words used only for bots and crawlers.