Skip to content

Commit 3892e3f

Browse files
committed
fix: missing title in tryInstallCustomNode
1 parent bd6dc08 commit 3892e3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

glob/manager_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import cm_global
2424
from manager_util import *
2525

26-
version = [2, 48, 5]
26+
version = [2, 48, 6]
2727
version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '')
2828

2929

js/cm-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { sleep } from "./common.js";
44

55
async function tryInstallCustomNode(event) {
66
let msg = '-= [ComfyUI Manager] extension installation request =-\n\n';
7-
msg += `The '${event.detail.sender}' extension requires the installation of the '${event.detail.title}' extension. `;
7+
msg += `The '${event.detail.sender}' extension requires the installation of the '${event.detail.target.title}' extension. `;
88

99
if(event.detail.target.installed == 'Disabled') {
1010
msg += 'However, the extension is currently disabled. Would you like to enable it and reboot?'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-manager"
33
description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI."
4-
version = "2.48.5"
4+
version = "2.48.6"
55
license = { file = "LICENSE.txt" }
66
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]
77

0 commit comments

Comments
 (0)