From 2fb6331e7bdc319c7b09dcb1f8e14744e065552e Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sat, 20 Apr 2024 16:41:11 -0700 Subject: [PATCH] videoanalysis: typo --- plugins/objectdetector/src/smart-motionsensor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/objectdetector/src/smart-motionsensor.ts b/plugins/objectdetector/src/smart-motionsensor.ts index 5cafc3c27..e315273aa 100644 --- a/plugins/objectdetector/src/smart-motionsensor.ts +++ b/plugins/objectdetector/src/smart-motionsensor.ts @@ -214,7 +214,7 @@ export class SmartMotionSensor extends ScryptedDeviceBase implements Settings, R continue; if (levenshteinDistance(label, d.label) <= labelDistance) return true; - this.console.log('No label does not match.', label, d.label); + this.console.log('Label does not match.', label, d.label); } return false;