diff --git a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/MapPointCloudSubscriber.kt b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/MapPointCloudSubscriber.kt index e851f1debb..0066ee8c2a 100644 --- a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/MapPointCloudSubscriber.kt +++ b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/map/MapPointCloudSubscriber.kt @@ -113,7 +113,12 @@ class MapPointCloudSubscriber private constructor() } } } - val dockerVersion = dockerVersionCode.toInt() + val dockerVersion = + if (dockerVersionCode.isNotEmpty()) { + dockerVersionCode.toInt() + } else { + 0 + } if (dockerVersion >= 260) { return true