Return after rendering - stops further processing in controller
This commit is contained in:
parent
4ae7bb4178
commit
a04b19a9ae
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ class TracesController < ApplicationController
|
||||||
do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
|
do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
|
||||||
params[:trace][:description], params[:trace][:visibility])
|
params[:trace][:description], params[:trace][:visibility])
|
||||||
rescue StandardError => ex
|
rescue StandardError => ex
|
||||||
render :action => "new" unless @trace.valid?
|
render :action => "new" and return unless @trace.valid?
|
||||||
logger.debug ex
|
logger.debug ex
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue