mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-09-03 03:23:22 +00:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
/**
|
|
* Custom logic for setting the correct device id.
|
|
*
|
|
* @param {AmplitudeClient} _amplitude - The amplitude instance.
|
|
* @returns {void}
|
|
*/
|
|
export function fixDeviceID(_amplitude: any): Promise<any> {
|
|
return new Promise(resolve => resolve(true));
|
|
}
|