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 any of the Redirect URIs in an LTI integration has a ? in it, and you try to launch a url with no querystring and no ?, Canvas blows up on this line: https://github.com/instructure/canvas-lms/blame/master/app/controllers/lti/ims/authentication_controller.rb#L233 because it tries to feed nil into CGI.parse()
?
nil
CGI.parse()
Canvas should execute the launch successfully, assuming everything is configured properly.
Canvas displays an Internal Server Error screen.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary:
If any of the Redirect URIs in an LTI integration has a
?
in it, and you try to launch a url with no querystring and no?
, Canvas blows up on this line: https://github.com/instructure/canvas-lms/blame/master/app/controllers/lti/ims/authentication_controller.rb#L233 because it tries to feednil
intoCGI.parse()
Steps to reproduce:
?
?
and no querystringExpected behavior:
Canvas should execute the launch successfully, assuming everything is configured properly.
Actual behavior:
Canvas displays an Internal Server Error screen.
Additional notes:
The text was updated successfully, but these errors were encountered: