From 5870fc872815493c090200dbbe80fbf5cff21ed7 Mon Sep 17 00:00:00 2001 From: LuckyOwlBen Date: Thu, 10 Apr 2025 14:39:41 -0600 Subject: [PATCH] Fix for logo not appearing in the stream --- public/_player/videojs/dist/videojs-overlay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/_player/videojs/dist/videojs-overlay.js b/public/_player/videojs/dist/videojs-overlay.js index 26cb39a..47f8241 100644 --- a/public/_player/videojs/dist/videojs-overlay.js +++ b/public/_player/videojs/dist/videojs-overlay.js @@ -403,7 +403,7 @@ } } const playerChild = this.player.addChild('overlay', mergeOptions); - this.player.el().insertBefore(playerChild.el(), this.player.controlBar.el()); + this.player.el().insertAfter(playerChild.el(), this.player.controlBar.el()); return playerChild; }); }