pinokiod 3.79.0 → 3.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/index.js +4 -3
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -3072,6 +3072,7 @@ class Server {
|
|
|
3072
3072
|
}
|
|
3073
3073
|
console.log(JSON.stringify(bundles, null, 2))
|
|
3074
3074
|
res.render("tools", {
|
|
3075
|
+
current_host: this.kernel.peer.host,
|
|
3075
3076
|
pending,
|
|
3076
3077
|
installs,
|
|
3077
3078
|
bundles,
|
|
@@ -3249,9 +3250,9 @@ class Server {
|
|
|
3249
3250
|
// if (!this.kernel.proto.config) {
|
|
3250
3251
|
// await this.kernel.proto.init()
|
|
3251
3252
|
// }
|
|
3252
|
-
if (!this.kernel.plugin.config) {
|
|
3253
|
-
await this.kernel.plugin.init()
|
|
3254
|
-
}
|
|
3253
|
+
// if (!this.kernel.plugin.config) {
|
|
3254
|
+
// await this.kernel.plugin.init()
|
|
3255
|
+
// }
|
|
3255
3256
|
|
|
3256
3257
|
if (req.query.mode !== "settings" && !home) {
|
|
3257
3258
|
res.redirect("/?mode=settings")
|