From c1b141ef1e684b8b1e4c3c6adba174efae9946ff Mon Sep 17 00:00:00 2001 From: DanielnetoDotCom Date: Sat, 24 Oct 2020 15:38:26 -0300 Subject: [PATCH] https://github.com/WWBN/AVideo/issues/3893 --- objects/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/objects/functions.php b/objects/functions.php index 5f4a9704b2..8043546548 100644 --- a/objects/functions.php +++ b/objects/functions.php @@ -2244,6 +2244,9 @@ function isBot() { if (empty($_SERVER['HTTP_USER_AGENT'])) { return true; } + if(isAVideoEncoder()){ + return false; + } // User lowercase string for comparison. $user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); // A list of some common words used only for bots and crawlers.