capacitor-plugin-camera-forked 3.1.124 → 3.1.125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -730,8 +730,8 @@ class BlurDetectionHelper {
|
|
|
730
730
|
let combinedRect = CGRect(x: minX, y: minY, width: maxX - minX, height: maxY - minY)
|
|
731
731
|
|
|
732
732
|
// Minimum width and height
|
|
733
|
-
let minWidth = 100
|
|
734
|
-
let minHeight = 40
|
|
733
|
+
let minWidth = 100.0
|
|
734
|
+
let minHeight = 40.0
|
|
735
735
|
if combinedRect.width < minWidth || combinedRect.height < minHeight {
|
|
736
736
|
return []
|
|
737
737
|
}
|
package/package.json
CHANGED