pinokiod 3.164.0 → 3.166.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/views/app.ejs +5 -1
package/package.json
CHANGED
package/server/views/app.ejs
CHANGED
|
@@ -6450,7 +6450,11 @@ body.dark .pinokio-fork-dropdown-remote, body.dark .pinokio-publish-dropdown-rem
|
|
|
6450
6450
|
refresh_du("logs")
|
|
6451
6451
|
} else {
|
|
6452
6452
|
if (event.data.type === 'start') {
|
|
6453
|
-
|
|
6453
|
+
const frameCandidate = (typeof event.data.frame === 'string' ? event.data.frame : null)
|
|
6454
|
+
const frameName = frameCandidate || resolveFrameName(frameCandidate, event.source) || resolveFrameName(null, event.source)
|
|
6455
|
+
if (typeof frameName === 'string' && frameName.startsWith('@http')) {
|
|
6456
|
+
ignorePersistedSelection = true
|
|
6457
|
+
}
|
|
6454
6458
|
}
|
|
6455
6459
|
refresh()
|
|
6456
6460
|
}
|