Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/DevicesDetection/Columns/Base.php')
-rw-r--r--plugins/DevicesDetection/Columns/Base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DevicesDetection/Columns/Base.php b/plugins/DevicesDetection/Columns/Base.php
index 5c3a073c91..a28b7de08a 100644
--- a/plugins/DevicesDetection/Columns/Base.php
+++ b/plugins/DevicesDetection/Columns/Base.php
@@ -14,8 +14,8 @@ use Piwik\Plugin\Dimension\VisitDimension;
abstract class Base extends VisitDimension
{
- protected function getUAParser($userAgent)
+ protected function getUAParser($userAgent, $clientHints)
{
- return StaticContainer::get(DeviceDetectorFactory::class)->makeInstance($userAgent);
+ return StaticContainer::get(DeviceDetectorFactory::class)->makeInstance($userAgent, $clientHints);
}
}