From 56456bdddad8c701883e7b4d2c282ce4424d5652 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Thu, 18 Jun 2020 20:56:47 +0200 Subject: [PATCH] Always init AardGL --- src/ext/lib/video-data/VideoData.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ext/lib/video-data/VideoData.js b/src/ext/lib/video-data/VideoData.js index 0819518..8c62b9d 100644 --- a/src/ext/lib/video-data/VideoData.js +++ b/src/ext/lib/video-data/VideoData.js @@ -179,7 +179,8 @@ class VideoData { return; } if(! this.arSetupComplete){ - this.arDetector = new ArDetector(this); + // this.arDetector = new ArDetector(this); + this.arDetector = new AardGl(this); } } @@ -192,7 +193,8 @@ class VideoData { this.arDetector.init(); } else{ - this.arDetector = new ArDetector(this); + // this.arDetector = new ArDetector(this); + this.arDetector = new AardGl(this); this.arDetector.init(); } }