[Addon] Set tv app path if target is tv 17/258417/4
authorjaekuk, lee <juku1999@samsung.com>
Mon, 17 May 2021 07:40:05 +0000 (16:40 +0900)
committerjaekuk lee <juku1999@samsung.com>
Mon, 17 May 2021 10:11:13 +0000 (10:11 +0000)
Apps are installed in the "/opt/usr/apps" path on TV,
so if target is tv, change keyTerm value to "apps".

Change-Id: Iae3c7c590189dfec48304063030c9b040a6dcccb
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
wrt_app/addon/common/utils.ts [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 3ed10ce..d3fbfc7
@@ -1,4 +1,5 @@
-const keyTerm = 'globalapps';
+import { wrt } from '../../browser/wrt';
+const keyTerm = wrt.tv ? 'apps' : 'globalapps';
 const delimiter = '/';
 
 function extractID(line: string) {