Skip to content

Commit

Permalink
Hack: Return empty
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Nov 15, 2024
1 parent b4f54b1 commit eaed60b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config/comfyServerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ export class ComfyServerConfig {
migrationItemIds: Set<string> = new Set()
): Promise<Record<string, ModelPaths>> {
if (!migrationSource || !migrationItemIds.has('models')) {
return {};
return {
comfyui: {},
};
}
// The yaml file exited in migration source repo.
const migrationServerConfig = await ComfyServerConfig.getConfigFromRepoPath(migrationSource);
Expand Down

0 comments on commit eaed60b

Please sign in to comment.