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
payload: { allow: ['application/json', 'image/jpeg'] }
This will never match json nor jpeg. The if check in payload.js wrongly evaluates to true, since payload.allow !== mime, as it is an array.
if
payload.allow !== mime
https://github.com/spumko/hapi/blob/master/lib/payload.js#L66-L68
Noticed there also wasn't a test in unit or integration for when payload.allow is an array.
The text was updated successfully, but these errors were encountered:
945febf
hueniverse
No branches or pull requests
This will never match json nor jpeg. The
if
check in payload.js wrongly evaluates to true, sincepayload.allow !== mime
, as it is an array.https://github.com/spumko/hapi/blob/master/lib/payload.js#L66-L68
Noticed there also wasn't a test in unit or integration for when payload.allow is an array.
The text was updated successfully, but these errors were encountered: