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
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
Their service ignores the ampersand, even when it is inserted multiple times, and fulfils successfully the request.
Given this behaviour is part of Yahoo's service, would you be willing to relax the validation, perhaps by removing the following lines from combohandler.js:
if (fileTypes.indexOf('') > -1) {
// Most likely a malformed URL, which will just cause
// an exception later. Short-cut to the inevitable conclusion.
return next(new BadRequest('Truncated query parameters.'));
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Strange enough YUI 3.1.1 seed makes the following request, appending an unnecessary & to the URL:
http://yui.yahooapis.com/combo?3.1.1/build/widget/assets/skins/sam/widget.css&3.1.1/build/widget/assets/skins/sam/widget-stack.css&3.1.1/build/overlay/assets/skins/sam/overlay.css&
Their service ignores the ampersand, even when it is inserted multiple times, and fulfils successfully the request.
Given this behaviour is part of Yahoo's service, would you be willing to relax the validation, perhaps by removing the following lines from
combohandler.js
:The text was updated successfully, but these errors were encountered: