Remove code blocked default operation
authorJihoon Chung <jihoon.chung@samsung.com>
Wed, 26 Dec 2012 06:40:08 +0000 (15:40 +0900)
committerJihoon Chung <jihoon.chung@samsung.com>
Wed, 26 Dec 2012 06:40:08 +0000 (15:40 +0900)
[Issue#] N/A
[Problem] Some app service send data with default operation
This data isn't passed to web application
[Cause] Current WRT ignored default opertion
[Solution] Remove ignore code when WRT receive bundle data with
default operation
[SCMRequest] N/A

Change-Id: I93a9dbd6402f57d7c78fd5ce1a6dfaf7d5b5ad5d

src/view/common/view_logic_uri_support.cpp

index 2072bb9..d3d7d44 100644 (file)
@@ -192,10 +192,6 @@ std::string getAppServiceUri(bundle *bundle, WidgetModel *widgetModel)
     const char* value = NULL;
     value = appsvc_get_operation(bundle);
     std::string operation = value ? value : "";
-    // ignore default operation that is reserved by system
-    if (operation == APPSVC_OPERATION_DEFAULT) {
-        return std::string("");
-    }
     value = appsvc_get_uri(bundle);
     std::string scheme = value ? value : "";
     value = appsvc_get_mime(bundle);