explicitly retuen null
and also sort out formatting from a different time
This commit is contained in:
parent
90bbc082dc
commit
9be3ce928f
1 changed files with 5 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue