From 3c9f91a16a19acecefba8afe69fa2ae07f363743 Mon Sep 17 00:00:00 2001 From: Muhammad Nobin Date: Fri, 3 Apr 2026 00:49:42 +0600 Subject: [PATCH] Update Edge user agent detection for legacy version Update Edge user agent detection for legacy version and modern version that detect Edge with keyword 'Edg' --- application/config/user_agents.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/config/user_agents.php b/application/config/user_agents.php index 21251f46f59..693153d6fc7 100644 --- a/application/config/user_agents.php +++ b/application/config/user_agents.php @@ -61,7 +61,8 @@ $browsers = array( 'OPR' => 'Opera', 'Flock' => 'Flock', - 'Edge' => 'Edge', + 'Edg' => 'Edge', + 'Edge' => 'Edge Legacy', 'Chrome' => 'Chrome', // Opera 10+ always reports Opera/9.80 and appends Version/ to the user agent string 'Opera.*?Version' => 'Opera',