From 9f3b48c27793531d114781c71949b9a13457515a Mon Sep 17 00:00:00 2001 From: csawatzky Date: Mon, 19 Jan 2026 12:06:11 -0600 Subject: [PATCH] make sure to use the new version comparison for the max conditions as well --- src/models/Device.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/Device.ts b/src/models/Device.ts index f4ea4ee..ae03634 100644 --- a/src/models/Device.ts +++ b/src/models/Device.ts @@ -176,7 +176,7 @@ export class Device { case pond.DevicePlatform.DEVICE_PLATFORM_V2_WIFI_BLUE: case pond.DevicePlatform.DEVICE_PLATFORM_V2_CELLULAR_BLUE: case pond.DevicePlatform.DEVICE_PLATFORM_V2_ETHERNET_BLUE: - max = this.status.firmwareVersion >= "2.1.9" ? 4 : 2; + max = this.versionComparison(this.status.firmwareVersion, "2.1.9") ? 4 : 2; } return max }