@zxhy-npm/send-sls-logger 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/trace.js +1 -1
- package/package.json +1 -1
package/lib/trace.js
CHANGED
|
@@ -202,7 +202,7 @@ export const mobileInfo = (() => {
|
|
|
202
202
|
const match = ua.match(/Version\/([\d.]+)/);
|
|
203
203
|
browserVersion = match ? match[1] : '';
|
|
204
204
|
}
|
|
205
|
-
return `${deviceModel}
|
|
205
|
+
return `${deviceModel} ${browserName}${browserVersion ? `-${browserVersion}` : ''}`;
|
|
206
206
|
})();
|
|
207
207
|
/** 设备型号
|
|
208
208
|
* pc: MacOS 10.15.7-(Chrome-131.0)
|