mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-16 22:07:47 +00:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
|
/**
|
|
* Checks if Jitsi Meet is running on Spot TV.
|
|
*
|
|
* @returns {boolean} Whether or not Jitsi Meet is running on Spot TV.
|
|
*/
|
|
export function isSpotTV(): boolean {
|
|
return navigator.userAgent.includes('SpotElectron/');
|
|
}
|