We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Set-nbObject.ps1
it is checking, if it needs to lookup for the value.
line 111-113:
Is
if ($name -in $lookup.keys) { $value = ConvertTo-nbID -source $value -value $name }
Should be
if ($name -in $lookup.keys) { $value = ConvertTo-nbID -source $lookup[$name] -value $value }
This result in lookups on not existing urls.
The text was updated successfully, but these errors were encountered:
You are totally right! Thanks for the report. I'll push out a patch as I have a few other bugs to fix too. Thanks for the report!
Sorry, something went wrong.
No branches or pull requests
In Set-nbObject.ps1
it is checking, if it needs to lookup for the value.
Is
Should be
This result in lookups on not existing urls.
The text was updated successfully, but these errors were encountered: