You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
explicitly retuen null
and also sort out formatting from a different time
This commit is contained in:
@@ -103,8 +103,11 @@ function getRemoteAudioElement(): HTMLAudioElement {
|
|||||||
// Might as well just use DOM.
|
// Might as well just use DOM.
|
||||||
const remoteAudioElement = document.getElementById("remoteAudio") as HTMLAudioElement;
|
const remoteAudioElement = document.getElementById("remoteAudio") as HTMLAudioElement;
|
||||||
if (!remoteAudioElement) {
|
if (!remoteAudioElement) {
|
||||||
console.error("Failed to find remoteAudio element - cannot play audio!"
|
console.error(
|
||||||
+ "You need to add an <audio/> to the DOM.");
|
"Failed to find remoteAudio element - cannot play audio!" +
|
||||||
|
"You need to add an <audio/> to the DOM.",
|
||||||
|
);
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
return remoteAudioElement;
|
return remoteAudioElement;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user