Skip to content

Commit

Permalink
fix: fix issues for app modules
Browse files Browse the repository at this point in the history
  • Loading branch information
reisxd committed Apr 1, 2024
1 parent a178965 commit 06d9c4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tizenbrew-app/TizenBrew/config.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns:tizen="http://tizen.org/ns/widgets" xmlns="http://www.w3.org/ns/widgets" id="https://tizentube.live"
version="1.1.1" viewmodes="maximized">
version="1.1.2" viewmodes="maximized">
<access origin="*" subdomains="true" />
<tizen:application id="xvvl3S1bvH.TizenBrewStandalone" package="xvvl3S1bvH" required_version="2.3" />
<author href="https://tizentube.live">Reis Can</author>
Expand Down
2 changes: 1 addition & 1 deletion tizenbrew-app/TizenBrew/service/moduleLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function loadModules(moduleList) {
appName: moduleJson.appName,
description: moduleJson.description,
packageType: moduleJson.packageType,
appPath: moduleJson.appPath,
appPath: `https://unpkg.com/${moduleJson.name}/${moduleJson.appPath}`
};
} else {
moduleData = {
Expand Down
2 changes: 1 addition & 1 deletion tizenbrew-app/TizenBrew/service/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ module.exports.onStart = function () {
} else {
global.currentModule = {
type: 'app',
path: `https://cdn.jsdelivr.net/npm/${module.name}/${module.appPath}`
path: `https://unpkg.com/${module.name}/${module.appPath}`
}
}
});
Expand Down

0 comments on commit 06d9c4d

Please sign in to comment.