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
If using environments, a nested key value won't return if not defined for the specified environment.
Example
{ "myData": { "myValue": "value" }, "development": { "myData": { "myValue": "otherValue" } } }
The above example will return correctly "myData.myValue" if the environment is "development", but will return null if the environment is production.
The problem is a missing else for the if statement on line 272 if (this.environmentExists())
The text was updated successfully, but these errors were encountered:
Vheissu
No branches or pull requests
If using environments, a nested key value won't return if not defined for the specified environment.
Example
{
"myData": { "myValue": "value" },
"development": { "myData": { "myValue": "otherValue" } }
}
The above example will return correctly "myData.myValue" if the environment is "development", but will return null if the environment is production.
The problem is a missing else for the if statement on line 272
if (this.environmentExists())
The text was updated successfully, but these errors were encountered: