Open steinbachio opened 5 years ago
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.
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!
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.