[Notification] Fix for getNotification and UserNotification constructor 56/152856/1
authorPawel Kaczmarczyk <p.kaczmarczy@partner.samsung.com>
Wed, 27 Sep 2017 08:33:04 +0000 (10:33 +0200)
committerPawel Kaczmarczyk <p.kaczmarczy@partner.samsung.com>
Wed, 27 Sep 2017 08:33:04 +0000 (10:33 +0200)
[Bug] progressValue wasn't stored propperly, getNotification was requesting for StatusNotification object

[Verification] Tested in Chrome console

Change-Id: I12b221988bf6d984cd79a4ab28a1fe09bb0bcbe7
Signed-off-by: Pawel Kaczmarczyk <p.kaczmarczy@partner.samsung.com>
src/notification/notification_api.js

index b4cd723..1b8bc52 100644 (file)
@@ -206,7 +206,7 @@ NotificationManager.prototype.getNotification = function(id) {
 
   var data = {
     //add marker for UserNotification implementation
-    newImpl: (args.notification instanceof tizen.UserNotification),
+    newImpl: true,
     id: args.id
   };
 
@@ -781,6 +781,7 @@ function TextContentsInitDict(data) {
   });
 
   if (data instanceof _global.Object) {
+    this['progressType'] = data['progressType'];
     for (var prop in data) {
       if (this.hasOwnProperty(prop)) {
         this[prop] = data[prop];