Skip to content

Commit

Permalink
fix: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amar-1995 committed Feb 22, 2024
1 parent e922bd9 commit ed2f25f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/hms-video-store/src/utils/user-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ export async function createUserAgent(sdkEnv: ENV = ENV.PROD, frameworkInfo?: HM
*/
const parsedOs = await parsedUserAgent.getOS().withClientHints();
const parsedDevice = await parsedUserAgent.getDevice().withClientHints();
const parsedBrowser = await parsedUserAgent.getBrowser().withClientHints();
// const parsedBrowser = await parsedUserAgent.getBrowser().withClientHints();
const parsedBrowser = parsedUserAgent.getBrowser();

// console.log('log ', parsedBrowser, parsedBrowser1);

const os = replaceSpaces(`web_${parsedOs.name}`);
const os_version = parsedOs.version || '';
Expand Down

0 comments on commit ed2f25f

Please sign in to comment.