fix(video): typo in iOS detection

No big problems caused by typo so far, once isSafari flag was being used
to validate supported devices (safari is always used in iOS)
This commit is contained in:
Mario Jr 2021-10-27 11:28:52 -03:00
parent 94cbc3bbc8
commit 35cac1eb8e

View File

@ -88,7 +88,7 @@ const isVirtualBackgroundEnabled = () => {
}
const isVirtualBackgroundSupported = () => {
return !(deviceInfo.isIOS || browserInfo.isSafari);
return !(deviceInfo.isIos || browserInfo.isSafari);
}
const getVirtualBgImagePath = () => {