diff --git a/ui/remote_button.js b/ui/remote_button.js index b1a4f05bfd..a4c8e2a307 100644 --- a/ui/remote_button.js +++ b/ui/remote_button.js @@ -116,7 +116,9 @@ shaka.ui.RemoteButton = class extends shaka.ui.Element { /** @override */ release() { if (this.video.remote && this.callbackId_ != -1) { - this.video.remote.cancelWatchAvailability(this.callbackId_); + this.video.remote.cancelWatchAvailability(this.callbackId_).catch(() => { + // Ignore this error. + }); } super.release();