From 420bf1066c02bcf9d4243a9e0c9da8acf00b9811 Mon Sep 17 00:00:00 2001 From: chenyuan-new <53860479+chenyuan-new@users.noreply.github.com> Date: Tue, 8 Aug 2023 16:22:10 +0800 Subject: [PATCH] fix: remove duplicated BRANDS input when call setProps in UACHData func (#663) --- src/main/ua-parser.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/ua-parser.js b/src/main/ua-parser.js index 45dddb0..a8ed359 100755 --- a/src/main/ua-parser.js +++ b/src/main/ua-parser.js @@ -925,7 +925,6 @@ setProps.call(this, [ [BRANDS, itemListToArray(uach[CH_HEADER])], [FULLVERLIST, itemListToArray(uach[CH_HEADER_FULL_VER_LIST])], - [BRANDS, itemListToArray(uach[CH_HEADER])], [MOBILE, /\?1/.test(uach[CH_HEADER_MOBILE])], [MODEL, stripQuotes(uach[CH_HEADER_MODEL])], [PLATFORM, stripQuotes(uach[CH_HEADER_PLATFORM])],