From 5ccf1d552f6ded7148caf27864639cf26470fdac Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Thu, 14 Jul 2022 17:58:30 +0200 Subject: [PATCH] Fix compatibility check for core only --- 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 2c2ec2f..3438a73 100644 --- a/src/utils/restreamer.js +++ b/src/utils/restreamer.js @@ -374,7 +374,7 @@ class Restreamer { async _init() { const compatibility = this.Compatibility(); - if (!compatibility.compatible) { + if (!compatibility.core.compatible) { return; }