Fixed navigator value issue
This commit is contained in:
parent
7ae1feb40a
commit
0561548ffa
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ const checkNavigatorValue = (key) => {
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars
|
||||||
const { value } = Object.getOwnPropertyDescriptor(Navigator.prototype, key);
|
const { value } = Object.getOwnPropertyDescriptor(Navigator.prototype, key);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return 'Failed Navigator.prototype';
|
return 'Failed Navigator value';
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue