We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1228f76 commit 25bef9eCopy full SHA for 25bef9e
packages/system-server/src/init.ts
@@ -51,7 +51,8 @@ async function main() {
51
logger.info('start system extension server app')
52
53
// init system app route
54
- let rt = await createApplicationRoute(app.name, app.appid, 0)
+ const finalApp = await getApplicationByAppid(Config.SYSTEM_EXTENSION_APPID)
55
+ let rt = await createApplicationRoute(finalApp.name, finalApp.appid, 0)
56
if (!rt) {
57
logger.error('Error: create route failed')
58
}
0 commit comments