You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Appease the linter
This commit is contained in:
@@ -24,6 +24,9 @@ export function createAudioContext(opts?: AudioContextOptions): AudioContext {
|
|||||||
if (window.AudioContext) {
|
if (window.AudioContext) {
|
||||||
return new AudioContext(opts);
|
return new AudioContext(opts);
|
||||||
} else if (window.webkitAudioContext) {
|
} else if (window.webkitAudioContext) {
|
||||||
|
// While the linter is correct that "a constructor name should not start with
|
||||||
|
// a lowercase letter", it's also wrong to think that we have control over this.
|
||||||
|
// eslint-disable-next-line new-cap
|
||||||
return new window.webkitAudioContext(opts);
|
return new window.webkitAudioContext(opts);
|
||||||
} else {
|
} else {
|
||||||
throw new Error("Unsupported browser");
|
throw new Error("Unsupported browser");
|
||||||
|
|||||||
Reference in New Issue
Block a user