Fixed WPM workaround for BTL Specified Test 9.23.2.X5 by reverting. (#1140)

This commit is contained in:
Steve Karg
2025-11-12 07:45:20 -06:00
committed by GitHub
parent 979ff0ead9
commit 86e4405c71
2 changed files with 3 additions and 11 deletions
-9
View File
@@ -77,15 +77,6 @@ static int write_property_multiple_decode(
}
if (device_write_property) {
if (device_write_property(wp_data) == false) {
/* Workaround BTL Specified Test 9.23.2.X5 */
if ((wp_data->error_class ==
ERROR_CLASS_PROPERTY) &&
(wp_data->error_code ==
ERROR_CODE_INVALID_DATA_TYPE)) {
wp_data->error_class = ERROR_CLASS_SERVICES;
wp_data->error_code =
ERROR_CODE_INVALID_TAG;
}
return BACNET_STATUS_ERROR;
}
}