summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nandana Dutt <nandana@google.com> 2018-11-14 14:29:07 -0800
committer android-build-merger <android-build-merger@google.com> 2018-11-14 14:29:07 -0800
commite7189f4bf8759235e0224a45ff99d534ece14f35 (patch)
tree6eafea8575605645fc0add23b785047f760bafc6
parentba4216a1b1b49348ca1abc468df9cbb067b90cb3 (diff)
parentd661a63ef885ed1a875d49031d6e0dcc125ce9ce (diff)
Merge "Fix notification description" am: 0b14b27387
am: d661a63ef8 Change-Id: I5ffcbd23704f3178def3bbdf3fb0aafdff1b2887
-rw-r--r--cmds/dumpstate/dumpstate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp
index 0b9bca013c..f540f32597 100644
--- a/cmds/dumpstate/dumpstate.cpp
+++ b/cmds/dumpstate/dumpstate.cpp
@@ -1971,7 +1971,8 @@ static void SetOptionsFromProperties(Dumpstate::DumpOptions* options) {
// Reset the property
android::base::SetProperty(PROPERTY_EXTRA_TITLE, "");
- options->extra_options = android::base::GetProperty(PROPERTY_EXTRA_DESCRIPTION, "");
+ options->notification_description =
+ android::base::GetProperty(PROPERTY_EXTRA_DESCRIPTION, "");
if (!options->notification_description.empty()) {
// Reset the property
android::base::SetProperty(PROPERTY_EXTRA_DESCRIPTION, "");