mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
fix(rn) tweak UA string
Make sure all the parts are "something/something-else" similar to how browsers do it.
This commit is contained in:
committed by
Calinteodor
parent
956ca27b01
commit
ab51512088
@@ -263,7 +263,7 @@ function _visitNode(node, callback) {
|
||||
= `react-native/${reactNativeVersion.major}.${reactNativeVersion.minor}.${reactNativeVersion.patch}`;
|
||||
|
||||
// (OS version)
|
||||
const os = `(${Platform.OS}/${Platform.Version})`;
|
||||
const os = `${Platform.OS.toLowerCase()}/${Platform.Version}`;
|
||||
|
||||
// SDK
|
||||
const liteTxt = AppInfo.isLiteSDK ? '-lite' : '';
|
||||
|
||||
Reference in New Issue
Block a user