summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChrisB-Elektrobit <chris.boguslawski@elektrobit.com>2017-08-17 11:29:18 -0400
committerChrisB-Elektrobit <chris.boguslawski@elektrobit.com>2017-08-17 11:29:18 -0400
commitc03f1aeea948623306d954f3202d0f54d6f8ee01 (patch)
treee9c2b9a412f6426ca0c1c625b1956aaa68b004b4
parent66569e1fe7adda31381d806652148384894f16c1 (diff)
downloadsdl_core-c03f1aeea948623306d954f3202d0f54d6f8ee01.tar.gz
- changing Show Request metadata but no data warning result code from IGNORED to WARNINGS
-rw-r--r--src/components/application_manager/src/commands/mobile/show_request.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/commands/mobile/show_request.cc b/src/components/application_manager/src/commands/mobile/show_request.cc
index 00cdc2a603..7664df602e 100644
--- a/src/components/application_manager/src/commands/mobile/show_request.cc
+++ b/src/components/application_manager/src/commands/mobile/show_request.cc
@@ -74,7 +74,7 @@ void ShowRequest::HandleMetadata(const char* field_id,
<< field_id << ", ignoring with warning");
// tag provided with no item, ignore with warning
if (mobile_apis::Result::INVALID_ENUM == core_result_code_) {
- core_result_code_ = mobile_apis::Result::IGNORED;
+ core_result_code_ = mobile_apis::Result::WARNINGS;
core_response_info_ =
"Metadata tag was provided for a field with no data.";
}