From ba1f8a426efc7d2da2d14975a90252f9eac38910 Mon Sep 17 00:00:00 2001 From: wseymour Date: Tue, 23 Apr 2024 15:50:15 -0500 Subject: [PATCH] chore: add static error to plugin --- src/plugin.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugin.js b/src/plugin.js index 3c94b57..e0f0b84 100644 --- a/src/plugin.js +++ b/src/plugin.js @@ -437,6 +437,9 @@ const eme = function(options = {}) { // Register the plugin with video.js. videojs.registerPlugin('eme', eme); +// contrib-eme specific error const +eme.Error = EmeError; + // Include the version number. eme.VERSION = VERSION;