From 8f87ba4645867be7cabaf9faa2d2ccda1347dd0f Mon Sep 17 00:00:00 2001 From: Maksym Kucherov Date: Thu, 29 May 2025 14:00:10 +0300 Subject: [PATCH] Modules: 51Degrees Device Detection -- update `devicetype` mapping. Mapping phones to a more specific devicetype in the AdCOM Taxonomy --- .../fiftyone/devicedetection/v1/core/OrtbDeviceType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/modules/fiftyone-devicedetection/src/main/java/org/prebid/server/hooks/modules/fiftyone/devicedetection/v1/core/OrtbDeviceType.java b/extra/modules/fiftyone-devicedetection/src/main/java/org/prebid/server/hooks/modules/fiftyone/devicedetection/v1/core/OrtbDeviceType.java index a31d387c991..fc5a6c8d9ed 100644 --- a/extra/modules/fiftyone-devicedetection/src/main/java/org/prebid/server/hooks/modules/fiftyone/devicedetection/v1/core/OrtbDeviceType.java +++ b/extra/modules/fiftyone-devicedetection/src/main/java/org/prebid/server/hooks/modules/fiftyone/devicedetection/v1/core/OrtbDeviceType.java @@ -27,7 +27,7 @@ public enum OrtbDeviceType { Map.entry("Mobile", OrtbDeviceType.MOBILE_TABLET), Map.entry("Router", OrtbDeviceType.CONNECTED_DEVICE), Map.entry("SmallScreen", OrtbDeviceType.CONNECTED_DEVICE), - Map.entry("SmartPhone", OrtbDeviceType.MOBILE_TABLET), + Map.entry("SmartPhone", OrtbDeviceType.PHONE), Map.entry("SmartSpeaker", OrtbDeviceType.CONNECTED_DEVICE), Map.entry("SmartWatch", OrtbDeviceType.CONNECTED_DEVICE), Map.entry("Tablet", OrtbDeviceType.TABLET),