From be426abd1b233bddacfef386ed5bedd14f7c13dd Mon Sep 17 00:00:00 2001 From: yoution Date: Fri, 19 Nov 2021 13:15:41 +0800 Subject: [PATCH] fix: issue #5802 --- src/shared/components/Settings/Tools/Devices/index.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/shared/components/Settings/Tools/Devices/index.jsx b/src/shared/components/Settings/Tools/Devices/index.jsx index ff3ab7da46..2f2721ba8b 100644 --- a/src/shared/components/Settings/Tools/Devices/index.jsx +++ b/src/shared/components/Settings/Tools/Devices/index.jsx @@ -97,8 +97,7 @@ 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.operatingSystem === newDevice.operatingSystem) { + && item.model === newDevice.model) { exist = true; break; }