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:
parent
94cbc3bbc8
commit
35cac1eb8e
@ -88,7 +88,7 @@ const isVirtualBackgroundEnabled = () => {
|
||||
}
|
||||
|
||||
const isVirtualBackgroundSupported = () => {
|
||||
return !(deviceInfo.isIOS || browserInfo.isSafari);
|
||||
return !(deviceInfo.isIos || browserInfo.isSafari);
|
||||
}
|
||||
|
||||
const getVirtualBgImagePath = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user