summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDongjin Choi <milkelf.choi@samsung.com>2013-05-16 18:17:20 +0900
committerDongjin Choi <milkelf.choi@samsung.com>2013-05-16 18:17:20 +0900
commit3cfffc3927849f95881193cbe1c957103add4f52 (patch)
treeb45f1de67df3789f941630854187681917e6ae18
parente18022c956cca47cf25f5b87fac06d9e5cb31a75 (diff)
downloadwrt-plugins-tizen-tizen_2.1.tar.gz
wrt-plugins-tizen-tizen_2.1.tar.bz2
wrt-plugins-tizen-tizen_2.1.zip
Update change log and spec for wrt-plugins-tizen_0.4.32-1submit/tizen_2.1/20130516.133907accepted/tizen_2.1/20130520.093247tizen_2.1
[model] REDWOOD [binary_type] PDA [customer] OPEN [Issue#] N/A [Problem] getAppSharedURI() API returns wrong path [Cause] package is added twice to path [Solution] remove one package from the path [team] WebAPI [request] N/A [horizontal_expansion] N/A
-rwxr-xr-xpackaging/wrt-plugins-tizen.spec2
-rw-r--r--src/Application/ApplicationManager.cpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/packaging/wrt-plugins-tizen.spec b/packaging/wrt-plugins-tizen.spec
index 87c8937..d9810b6 100755
--- a/packaging/wrt-plugins-tizen.spec
+++ b/packaging/wrt-plugins-tizen.spec
@@ -1,7 +1,7 @@
Name: wrt-plugins-tizen
Summary: JavaScript plugins for WebRuntime
Version: 0.4.32
-Release: 0
+Release: 1
Group: Development/Libraries
License: Apache License, Version 2.0
Source0: %{name}-%{version}.tar.gz
diff --git a/src/Application/ApplicationManager.cpp b/src/Application/ApplicationManager.cpp
index 41b0d65..98bb405 100644
--- a/src/Application/ApplicationManager.cpp
+++ b/src/Application/ApplicationManager.cpp
@@ -1509,8 +1509,7 @@ void ApplicationManager::OnRequestReceived(const EventApplicationGetAppSharedURI
return;
}
- std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH +
- std::string(pkg_name) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED;
+ std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED;
free(pkg_name);
pkgmgrinfo_pkginfo_destroy_pkginfo(pkginfo_h);