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>(