Skip to content

Commit

Permalink
Fixed missing addon name/version in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt committed Aug 15, 2024
1 parent 90ff0ea commit ba36f53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Class AddonManagement
currDependency := this.GetAddon(v.Name, v.Version, indexODependency)
if (!IsObject(currDependency))
{
MsgBox, 48, Warning, % "Can't find the addon " . currDependency.Name . " required by " . Name . "`n" . Name . " will be disabled."
MsgBox, 48, Warning, % "Can't find the addon """ . v.Name . " " . v.Version . """ required by " . Name . "`n" . Name . " will be disabled."
this.DisableAddon(Name,Version)
return false
}
Expand Down

0 comments on commit ba36f53

Please sign in to comment.