pinokiod 7.5.31 → 7.5.33
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/views/app.ejs +1 -4
package/package.json
CHANGED
package/server/views/app.ejs
CHANGED
|
@@ -11040,9 +11040,6 @@ const rerenderMenuSection = (container, html) => {
|
|
|
11040
11040
|
try {
|
|
11041
11041
|
setLogsNewBadge(window.sessionStorage.getItem(logsNotificationKey) === "1")
|
|
11042
11042
|
} catch (_) {}
|
|
11043
|
-
if (document.querySelector(".appcanvas") && document.querySelector(".appcanvas").dataset.pageError === "1") {
|
|
11044
|
-
setLogsNewBadge(true)
|
|
11045
|
-
}
|
|
11046
11043
|
const pluginInstallPreflightCache = new Map()
|
|
11047
11044
|
const normalizePluginPathFromLaunchHref = (rawHref) => {
|
|
11048
11045
|
if (!rawHref || typeof rawHref !== "string") {
|
|
@@ -12351,7 +12348,7 @@ const rerenderMenuSection = (container, html) => {
|
|
|
12351
12348
|
}
|
|
12352
12349
|
return
|
|
12353
12350
|
}
|
|
12354
|
-
if (event.data.e === "pinokio:logs-new" || event.data.type === "pinokio:logs-new"
|
|
12351
|
+
if (event.data.e === "pinokio:logs-new" || event.data.type === "pinokio:logs-new") {
|
|
12355
12352
|
setLogsNewBadge(true)
|
|
12356
12353
|
return
|
|
12357
12354
|
}
|