From ccef0fd186341ec059781142c1e5189f8e944362 Mon Sep 17 00:00:00 2001 From: JulianAlcala Date: Tue, 12 May 2026 05:46:01 -0500 Subject: [PATCH] fix --- .../core/data/datasource/location_remote_datasource_impl.dart | 4 ++-- .../lib/src/legacy_device_remote_datasource_impl.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/legacy/modules/location/lib/src/core/data/datasource/location_remote_datasource_impl.dart b/modules/legacy/modules/location/lib/src/core/data/datasource/location_remote_datasource_impl.dart index 65c176f5..ef91426d 100644 --- a/modules/legacy/modules/location/lib/src/core/data/datasource/location_remote_datasource_impl.dart +++ b/modules/legacy/modules/location/lib/src/core/data/datasource/location_remote_datasource_impl.dart @@ -121,8 +121,8 @@ class LocationRemoteDatasourceImpl implements LocationRemoteDatasource { final filters = encodeFilters([ {'field': 'positionDate', 'operator': 'gte', 'value': fromMs}, {'field': 'positionDate', 'operator': 'lte', 'value': toMs}, - {'field': 'ignore', 'operator': 'eq', 'value': false}, - {'field': 'suspect', 'operator': 'eq', 'value': false}, + {'field': 'ignore', 'operator': 'equal', 'value': false}, + {'field': 'suspect', 'operator': 'equal', 'value': false}, ]); final orderBy = encodeOrderBy('positionDate', direction: 'ASC'); diff --git a/modules/legacy/packages/legacy_device_state/lib/src/legacy_device_remote_datasource_impl.dart b/modules/legacy/packages/legacy_device_state/lib/src/legacy_device_remote_datasource_impl.dart index 1eeb87d3..f7bf190f 100644 --- a/modules/legacy/packages/legacy_device_state/lib/src/legacy_device_remote_datasource_impl.dart +++ b/modules/legacy/packages/legacy_device_state/lib/src/legacy_device_remote_datasource_impl.dart @@ -13,8 +13,8 @@ class LegacyDeviceRemoteDatasourceImpl implements LegacyDeviceRemoteDatasource { required String deviceId, }) async { final filters = encodeFilters([ - {'field': 'ignore', 'operator': 'eq', 'value': false}, - {'field': 'suspect', 'operator': 'eq', 'value': false}, + {'field': 'ignore', 'operator': 'equal', 'value': false}, + {'field': 'suspect', 'operator': 'equal', 'value': false}, ]); try { final response = await _repository.get>(