From dd7adc39bf860b2faadba2ba86e5e65a2f9101b5 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Wed, 22 Jan 2025 13:50:22 +0100 Subject: [PATCH] Move loading skills to a later point in time --- src/utils/restreamer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/restreamer.js b/src/utils/restreamer.js index f8a785f..a6f47e3 100644 --- a/src/utils/restreamer.js +++ b/src/utils/restreamer.js @@ -381,9 +381,9 @@ class Restreamer { return; } - await this._initSkills(); await this._initConfig(); await this._discoverChannels(); + await this._initSkills(); } _setTokenRefresh(expiresIn) {