diff --git a/src/shared/components/Settings/Tools/Devices/index.jsx b/src/shared/components/Settings/Tools/Devices/index.jsx index 2f2721ba8b..ff3ab7da46 100644 --- a/src/shared/components/Settings/Tools/Devices/index.jsx +++ b/src/shared/components/Settings/Tools/Devices/index.jsx @@ -97,7 +97,8 @@ export default class Devices extends ConsentComponent { for (const item of deviceItems) { if (item.deviceType === newDevice.deviceType && item.manufacturer === newDevice.manufacturer - && item.model === newDevice.model) { + && item.model === newDevice.model + && item.operatingSystem === newDevice.operatingSystem) { exist = true; break; }