[Messaging] email messageServiceTag don't work.
authorDongjin Choi <milkelf.choi@samsung.com>
Sun, 14 Apr 2013 07:49:49 +0000 (16:49 +0900)
committerDongjin Choi <milkelf.choi@samsung.com>
Sun, 14 Apr 2013 07:49:49 +0000 (16:49 +0900)
[Issue#] DCM-1133
[Problem] Invalid exception occur when messageServiceTag is email
[Cause] mis-typing
[Solution] messaging.mms -> messaging.email.

packaging/wrt-plugins-tizen.spec
src/Messaging/JSMessage.cpp

index 5e114c2..fdf4f97 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       wrt-plugins-tizen
 Summary:    JavaScript plugins for WebRuntime
-Version:    0.4.15
+Version:    0.4.16
 Release:    0
 Group:      Development/Libraries
 License:    Apache License, Version 2.0
index 2247440..d54c14d 100644 (file)
@@ -1849,7 +1849,7 @@ MessageType JSMessage::stringToMessageType(std::string type)
     else if (type.compare("messaging.mms") == 0) {
         retval = MMS;
     }
-    else if (type.compare("messaging.mms") == 0) {
+    else if (type.compare("messaging.email") == 0) {
         retval = EMAIL;
     }
     else{