You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Connector Package Validator Script does not correctly respect the "pluginEnabled" parameter.
Therefore the validation always fails for Connector which are not using the AI Plugin.
The Bugs are on line 388: if ($pluginEnabled) {
and line 485: elseif ($pluginEnabled -and (-not $isPluginSolutionPresent)) {
The variable names should be $isPluginEnabled on both lines.
The parameter $pluginEnabled is a string and is converted into a boolean $isPluginEnabled on lines 217-223.
The text was updated successfully, but these errors were encountered:
stefansidler
added a commit
to stefansidler/PowerPlatformConnectors
that referenced
this issue
Sep 30, 2024
Hey bud, i raised a PR to fix this a while ago here, but was asked to close it. They have finally added a PR here. The fix could have been a lot simpler but lets see.
The Connector Package Validator Script does not correctly respect the "pluginEnabled" parameter.
Therefore the validation always fails for Connector which are not using the AI Plugin.
The Bugs are on line 388:
if ($pluginEnabled) {
and line 485:
elseif ($pluginEnabled -and (-not $isPluginSolutionPresent)) {
The variable names should be
$isPluginEnabled
on both lines.The parameter
$pluginEnabled
is a string and is converted into a boolean$isPluginEnabled
on lines 217-223.The text was updated successfully, but these errors were encountered: