mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: correct error message
This commit is contained in:
parent
52b653f271
commit
04d7360da9
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ export async function handleMarketplaceMessages(
|
|||
await marketplaceManager.installMarketplaceItem(message.marketplaceItem)
|
||||
} catch (error) {
|
||||
vscode.window.showErrorMessage(
|
||||
`Failed to open URL: ${error instanceof Error ? error.message : String(error)}`,
|
||||
`Failed to install item "${message.marketplaceItem.name}": ${error instanceof Error ? error.message : String(error)}`,
|
||||
)
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue