|
@@ -769,7 +769,7 @@ namespace IMCS.CCS.Service.Impl
|
|
|
tagValueQuery.Ip = task.IP;
|
|
|
//tagValueQuery.Address = task.Address;
|
|
|
List<CcsTagValue> tagValues = _ccsTagValueService.GetList(tagValueQuery);
|
|
|
- CcsTagValue tagValue = tagValues.Where(o => o.Address == task.Address).FirstOrDefault();
|
|
|
+ CcsTagValue tagValue = tagValues.Where(o => o.Address == task.Address.Trim()).FirstOrDefault();
|
|
|
|
|
|
if (tagValue != null && tagValue.TagValue == task.CallbackValue)
|
|
|
{
|