Fixed wrong tel scheme action
authorJihoon Chung <jihoon.chung@samsung.com>
Fri, 8 Mar 2013 07:35:13 +0000 (16:35 +0900)
committerGerrit Code Review <gerrit2@kim11>
Mon, 11 Mar 2013 05:16:23 +0000 (14:16 +0900)
[Issue#] TDIS-2991
[Problem] Unable to launch call when invoking the tel scheme
[Cause] Missed set tel number to uri field for appcontrol
[Solution] Add routine for set tel number to uri field
[SCMRequest] N/A

Change-Id: I13690d70ab8ff69ce1cf92ce4b243110c535a169

src/view/common/scheme_action_map.cpp

index d27d13a..d7d62f3 100644 (file)
@@ -167,9 +167,7 @@ AppSvcOperationMap initializeAppSvcOperations()
     // TEL
     AppSvcOperation telOp;
     telOp.operation = APPSVC_OPERATION_CALL;
-    telOp.needUri = false;
-    //telOp.conversions.push_back(
-    //      AppSvcConversion(APPSVC_DATA_CONTEXT, REGEX_DATA_CONTEXT)); //TODO
+    telOp.needUri = true;
     ret.insert(std::make_pair(Scheme::TEL, telOp));
 
     return ret;