explicitly retuen null

and also sort out formatting from a different time
This commit is contained in:
David Baker 2020-11-05 09:47:09 +00:00
parent 90bbc082dc
commit 9be3ce928f

View File

@ -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;
} }