Fixed wrong WARP scheme checking
authorJihoon Chung <jihoon.chung@samsaung.com>
Fri, 2 Aug 2013 13:35:48 +0000 (22:35 +0900)
committerJihoon Chung <jihoon.chung@samsaung.com>
Sat, 3 Aug 2013 08:16:12 +0000 (17:16 +0900)
[Issue#] N/A
[Problem] N/A
[Cause] N/A
[Solution] WARP ignore scheme missed "smsto".
[SCMRequest] N/A

Change-Id: I9f9e5d3281cb2f1e9bb761acb5f2cd554b63d0e2

modules/utils/src/warp_iri.cpp

index b00f257..a08551f 100644 (file)
@@ -41,7 +41,7 @@ namespace {
 // hard drive. What's why we cannot check any iri with file schema.
 
 const char *IRI_IGNORED_SCHEME[] = { "file://", "widget://", "app://", "tel:",
-                                     "sms:", "mmsto:", "mailto:", "data:", "blob:",
+                                     "sms:", "smsto:", "mmsto:", "mailto:", "data:", "blob:",
                                      "tizen-service:", 0 };
 
 const DPL::String SCHEMA_HTTP = DPL::FromUTF8String("http");