Skip to content

Commit c7a650e

Browse files
[Bug Bash] Devices checking (#5831)
1 parent 282b89c commit c7a650e

File tree

1 file changed

+2
-1
lines changed
  • src/shared/components/Settings/Tools/Devices

1 file changed

+2
-1
lines changed

src/shared/components/Settings/Tools/Devices/index.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ export default class Devices extends ConsentComponent {
9797
for (const item of deviceItems) {
9898
if (item.deviceType === newDevice.deviceType
9999
&& item.manufacturer === newDevice.manufacturer
100-
&& item.model === newDevice.model) {
100+
&& item.model === newDevice.model
101+
&& item.operatingSystem === newDevice.operatingSystem) {
101102
exist = true;
102103
break;
103104
}

0 commit comments

Comments
 (0)