summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyungKi Lee <mk5004.lee@samsung.com>2020-01-30 00:55:00 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2020-01-30 00:55:00 +0000
commite00a6ce1fc4a755f7a6fd4105173e28e8f9a7a73 (patch)
tree6dd64916fb72cf0d1468e3fdfdb52ea29adc690e
parentbe1ff2dae6902c75afc2828b0e7f69f5a6c3e8d6 (diff)
parentb64b3489a8d5ba5195a07a315cbdc8b7ad77944e (diff)
downloadnotification-e00a6ce1fc4a755f7a6fd4105173e28e8f9a7a73.tar.gz
notification-e00a6ce1fc4a755f7a6fd4105173e28e8f9a7a73.tar.bz2
notification-e00a6ce1fc4a755f7a6fd4105173e28e8f9a7a73.zip
Merge "Update abstract_item's serialize" into tizen
-rw-r--r--notification-ex/abstract_item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/notification-ex/abstract_item.cc b/notification-ex/abstract_item.cc
index fe143fb..57eddf8 100644
--- a/notification-ex/abstract_item.cc
+++ b/notification-ex/abstract_item.cc
@@ -155,7 +155,7 @@ Bundle AbstractItem::Serialize() const {
b.Add(ABSTRACT_ITEM_CHANNEL_KEY, impl_->channel_);
b.Add(ABSTRACT_ITEM_ID_KEY, impl_->id_);
- b.Add(ABSTRACT_ITEM_SENDER_APPID_KEY, GetSenderAppId().c_str());
+ b.Add(ABSTRACT_ITEM_SENDER_APPID_KEY, impl_->sender_appid_);
b.Add(ABSTRACT_ITEM_TYPE_KEY, to_string(GetType()));
b.Add(ABSTRACT_ITEM_VERSION_KEY, to_string(impl_->version_));
b.Add(ABSTRACT_ITEM_HIDE_TIME_KEY, to_string(impl_->hide_time_));