mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-13 17:10:06 +00:00
Disable native reroute migration (#3379)
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 103 KiB |
@@ -44,7 +44,7 @@ app.registerExtension({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!(type in this.slot_types_default_out)) {
|
if (!(type in this.slot_types_default_out)) {
|
||||||
this.slot_types_default_out[type] = []
|
this.slot_types_default_out[type] = ['Reroute']
|
||||||
}
|
}
|
||||||
if (this.slot_types_default_out[type].includes(nodeId)) continue
|
if (this.slot_types_default_out[type].includes(nodeId)) continue
|
||||||
this.slot_types_default_out[type].push(nodeId)
|
this.slot_types_default_out[type].push(nodeId)
|
||||||
@@ -65,7 +65,7 @@ app.registerExtension({
|
|||||||
for (const el of outputs) {
|
for (const el of outputs) {
|
||||||
const type = el as string
|
const type = el as string
|
||||||
if (!(type in this.slot_types_default_in)) {
|
if (!(type in this.slot_types_default_in)) {
|
||||||
this.slot_types_default_in[type] = []
|
this.slot_types_default_in[type] = ['Reroute']
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.slot_types_default_in[type].includes(nodeId)) continue
|
if (this.slot_types_default_in[type].includes(nodeId)) continue
|
||||||
|
|||||||
@@ -965,7 +965,7 @@ export class ComfyApp {
|
|||||||
{
|
{
|
||||||
showMissingNodesDialog = true,
|
showMissingNodesDialog = true,
|
||||||
showMissingModelsDialog = true,
|
showMissingModelsDialog = true,
|
||||||
checkForRerouteMigration = true
|
checkForRerouteMigration = false
|
||||||
} = {}
|
} = {}
|
||||||
) {
|
) {
|
||||||
if (clean !== false) {
|
if (clean !== false) {
|
||||||
|
|||||||
Reference in New Issue
Block a user