Files
jitsi-meet/react/features/base/util/spot.ts
2025-04-17 21:33:05 +02:00

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/');
}