Actions
Bug #1997
closedxmera Omnia - Collection #1934: Fixing of several bugs
An ActionController::RespondToMismatchError occurred in welcome#robots:
Start date:
Due date:
% Done:
100%
Estimated time:
Affected Version:
Compatible Redmine Version:
Pull Request Link:
Description
An ActionController::RespondToMismatchError occurred in welcome#robots:
respond_to was called multiple times and matched with conflicting formats in this action. Please note that you may only call respond_to and match on a single format per action.
app/controllers/application_controller.rb:592:in `render_error'
Updated by liaham about 1 year ago
- Status changed from New to In Progress
- Assignee set to liaham
To fix it, the route must be modified to:
get 'robots.:format', :to => 'welcome#robots', :constraints => {format: 'txt'}
Updated by liaham about 1 year ago
- Target version changed from unplanned to 4.2.2
Updated by liaham about 1 year ago
See https://www.redmine.org/issues/40208 on redmine.org.
Updated by liaham about 1 year ago
- Project changed from xmera Omnia to Redmine
- Category deleted (
30) - Target version deleted (
4.2.2)
Updated by liaham about 1 year ago
- Status changed from In Progress to Closed
- % Done changed from 0 to 100
Actions