fix pairing code not working

This commit is contained in:
vinikjkkj
2025-05-15 13:27:15 -03:00
parent a4aad45343
commit fe3dbc81a5

View File

@@ -28,7 +28,7 @@ export const Browsers: BrowsersMap = {
export const getPlatformId = (browser: string) => {
const platformType = proto.DeviceProps.PlatformType[browser.toUpperCase()]
return platformType ? platformType.toString().charCodeAt(0).toString() : '49' //chrome
return platformType ? platformType.toString() : '1' //chrome
}
export const BufferJSON = {