diff --git a/src/ext/lib/ar-detect/ArDetector.js b/src/ext/lib/ar-detect/ArDetector.js index c617369..8513fb0 100644 --- a/src/ext/lib/ar-detect/ArDetector.js +++ b/src/ext/lib/ar-detect/ArDetector.js @@ -727,7 +727,12 @@ class ArDetector { } catch (e) { // edges weren't gucci, so we'll just reset // the aspect ratio to defaults - this.guardline.reset(); + try { + this.guardline.reset(); + } catch (e) { + // guardline wasn't gucci either, but we'll just ignore + // that and reset the aspect ratio anyway + } this.conf.resizer.setAr({type: AspectRatio.Automatic, ratio: this.getDefaultAr()}); } }